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

ValueError: Failed to convert a NumPy array to a Tensor (Unsupported object type int) Encountered this error for the same. On deep research, I found that it was due to...

Resolved this error " Failed to convert a NumPy array to a Tensor (Unsupported object type int)." Simply used astype for a consistent conversion and avoiding error

I have added the exercise file of lecture 14. It contains the Bank Customer Churn Prediction using Artificial Neural Network. Further It also improves the F1 score using various sampling...

In the '8_sgd_vs_gd' folder, the 'gd_and_sgd.ipynb' file, there is a logic flaw in the Stochastic Gradient Descent code, This line of code: ```python w_grad = -(2/total_samples)*(sample_x.T.dot(sample_y-y_predicted)) b_grad = -(2/total_samples)*(sample_y-y_predicted) ```...

The original function for logloss was using numpy defeating the purpose of creating a function. Replace NumPy-based log loss with pure Python version