python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Deep Smote error : RuntimeError: mat1 and mat2 shapes cannot be multiplied (51200x1 and 512x300)
I am trying to run deep Smote on cifar10 and Dont have much experience with pytorch as I code in tensorflow. It works fine when I run it on MNIST and FMNIST keeping channles = 1 there
However, the mom...

Sadaf Shafi
Votes: 0
Answers: 1
using SMOTE to treat imbalanced 3d array data
I have below data and here is the distribution of the classes.
X shape == (477324, 5, 11)
Y shape == (477324,)
{0: 11986, 1: 465338}
Since my dataset is imbalanced, I have tried RandomOverSampling us...
be_real
Votes: 0
Answers: 0
SMOTE oversampling ValueError: Input contains NaN, infinity or a value too large for dtype('float64'
I am trying to oversample my dataset before training but i get this error "ValueError: Input contains NaN, infinity or a value too large for dtype('float64'" even though there are no NAN val...
KyloDank
Votes: 0
Answers: 1
matplotlib: histogram of SMOTEd class distribution showing colored synthetic region
Say I have a binary imbalanced dataset like so:
from collections import Counter
from sklearn.datasets import make_classification
from matplotlib import pyplot as plt
from imblearn.over_sampling import...

user12587364
Votes: 0
Answers: 1