deep-learning-keras-tf-tutorial icon indicating copy to clipboard operation
deep-learning-keras-tf-tutorial copied to clipboard

Learn deep learning with tensorflow2.0, keras and python through this comprehensive deep learning tutorial series. Learn deep learning from scratch. Deep learning series for beginners. Tensorflow tuto...

Results 30 deep-learning-keras-tf-tutorial issues
Sort by recently updated
recently updated
newest added

for fitting data it must be "x_sm, y_sm = smote.fit_resample(x, y)" and not "x_sm, y_sm = smote.fit_sample(x, y)"

Fixing bug in method name, currently cell run is failing with "SGD is undefined". Really small change.

In deep-learning-keras-tf-tutorial/42_word2vec_gensim/42_word2vec_gensim.ipynb code-block-3 The reading file name should be changed to "reviews_Cell_Phones_and_Accessories_5.json" instead of "Cell_Phones_and_Accessories_5.json". `df = pd.read_json("reviews_Cell_Phones_and_Accessories_5.json", lines=True)` Thanks!!

3. Exercise: Predicting Customer Satisfaction Use the Customer Satisfaction dataset from Kaggle. - https://www.kaggle.com/datasets/teejmahal20/airline-passenger-satisfaction 1. Build a classification model to predict customer satisfaction. 2. Initially, use a logistic regression model...

I replaced the input_length with the input_shape. (Since TF is not allowing to use input_length ). On reading documentation, I found that original code was right too as given in...

If you try to use input_length=4 , it will throw an error saying it is not a valid keyword argument. Although, the same format has been mentioned in tensorflow documentation...

Solved the tensorflow error in ANN model where all the values needed to be parsed at integers for working

AT the end part of data augmentation, the required height and width werent defined only vars declared. Here I just resized theimage to get those things using openCV

MemoryError: Unable to allocate 1.99 GiB for an array with shape (2752, 180, 180, 3) and data type float64 . If the laptop's RAM is less than 8 gb and...

At the last , image height and width aren't been defined due to which it will cause a variable undefined error.