deep-learning-keras-tf-tutorial
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...
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...
…tten 1000 images
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) ```...
fixed correct filename of json
The original function for logloss was using numpy defeating the purpose of creating a function. Replace NumPy-based log loss with pure Python version