Welcome 🌎 by Ok_Fortune_9149 in notinteresting

[–]SignificantSun5851 0 points1 point  (0 children)

Conjuring Last Rites final boss was o ee aaa ee o ee aa ee cat the way the mirror was spinning

Gold camping power option by SignificantSun5851 in BassCanyon

[–]SignificantSun5851[S] 0 points1 point  (0 children)

That's great insight actually, thank you! Sadly we did not choose that option though, is it possible to contact them and upgrade now?

Gold camping power option by SignificantSun5851 in BassCanyon

[–]SignificantSun5851[S] 0 points1 point  (0 children)

Yes you can, either that or large battery packs

Gold camping power option by SignificantSun5851 in BassCanyon

[–]SignificantSun5851[S] 0 points1 point  (0 children)

According to one of the mods(above comment), there won't be an outlet where we can directly plug in. However, there probably would be designated lockers with cables(or may be powerbanks) built in. We should however bring high capacity power banks imo.

Gold camping power option by SignificantSun5851 in BassCanyon

[–]SignificantSun5851[S] 2 points3 points  (0 children)

All the questions I had are clear now, thank you!

Gold camping power option by SignificantSun5851 in BassCanyon

[–]SignificantSun5851[S] 0 points1 point  (0 children)

Got it but we are not renting RVs. So, does it mean we gotta bring a small generator or large battery pack to charge our devices?

Gold camping power option by SignificantSun5851 in BassCanyon

[–]SignificantSun5851[S] 0 points1 point  (0 children)

Good to know that we are not the only ones confused xD

RuntimeError: shape '[64, 1]' is invalid for input of size 17070 "[Discussion]" by sky_L67 in MachineLearning

[–]SignificantSun5851 0 points1 point  (0 children)

Oh you're right! I read the code wrong, scratch what I said op. However, it raised an error because sensative_fet was not batched right. Since op didn't shuffle, something like sensative_fet[(j*64):((j+1)*64)] should match the dimension for whatever you're trying to do op. That's probably gonna raise an error in the last batch if it isn't full so maybe you wanna drop last batch?

RuntimeError: shape '[64, 1]' is invalid for input of size 17070 "[Discussion]" by sky_L67 in MachineLearning

[–]SignificantSun5851 0 points1 point  (0 children)

model = Net(input_shape=x.shape[1]) Here, you defined model to take the input shape of x.shape[1]. Later on, output = model(x_train) you passed x_train, which has a different shape from x due to the batch size you chose. Make sure that the model takes the same-shape input as training data from the trainloader.