- 11
- 46 008
Machine Learning and Data Science Learning
United States
Приєднався 24 чер 2020
Machine Learning and Data Science Learning
Part 11 - Unsupervised Learning - K-Means Clustering with Python
Python - Unsupervised Learning - Clustering - Video
The source code is available here:
github.com/zhailat/Introduction-to-machine-learning-Python
Zeyad Hailat
The source code is available here:
github.com/zhailat/Introduction-to-machine-learning-Python
Zeyad Hailat
Переглядів: 423
Відео
Part 10 - Dimensionality Reduction - Principal Component Analysis using Python
Переглядів 7724 роки тому
Dimensionality Reduction - Principal Component Analysis using Python The source code is available here: github.com/zhailat/Introduction-to-machine-learning-Python Zeyad Hailat
Part 07 - Constructing a Multi-Class Classifier Using Neural Network with Python (Tensorflow Keras)
Переглядів 8 тис.4 роки тому
Constructing Multi-Class Classifier Using Neural Network Part 07 - Constructing a Multi-Class Classifier Using Neural Network with Python (Tensorflow Keras) The source code is available here: github.com/zhailat/Introduction-to-machine-learning-Python Zeyad Hailat
Part 08 - Constructing a Binary Classifier Using SVM with Python
Переглядів 7144 роки тому
Constructing a Binary Classifier Using SVM with Python The source code is available here: github.com/zhailat/Introduction-to-machine-learning-Python Zeyad Hailat
Part 09 - Constructing Multi-Class Classifier Using SVM with Python
Переглядів 12 тис.4 роки тому
Part 09 - Constructing Multi-Class Classifier Using SVM with Python The source code is available here: github.com/zhailat/Introduction-to-machine-learning-Python Zeyad Hailat
Part 06 - Constructing a Binary Classifier Using Neural Network with Python (Tensorflow & Keras)
Переглядів 10 тис.4 роки тому
Constructing Binary Classifier Using Neural Network with Tensorflow / Keras and Python The source code is available here: github.com/zhailat/Introduction-to-machine-learning-Python Zeyad Hailat
Part 05 - Constructing a Neural Network Models - Regression model with Python (Tensorflow & Keras)
Переглядів 11 тис.4 роки тому
Regression models. 1. Construct a multi-layer neural network model. 2. Tune the hyper-parameters for training a model. 3. Train a model on CPU or GPU. 4. Evaluate a model. 5. Save and load a model. Notes: All of the code in this tutorial implemented in Tensorflow 2.1.0. The source code is available here: github.com/zhailat/Introduction-to-machine-learning-Python Zeyad Hailat
Part 04 - Logistic Regression with Python
Переглядів 3504 роки тому
Module 05 - Logistice Regression - Python The source code is available here: github.com/zhailat/Introduction-to-machine-learning-Python Zeyad Hailat
Part 03 - Linear Regression with Python
Переглядів 4444 роки тому
Linear Regression - Python one variable and multiple variables using SKLearn package. The source code is available here: github.com/zhailat/Introduction-to-machine-learning-Python Zeyad Hailat
Part 02 - Python Quick Tutorial - Pandas and Data preprocessing
Переглядів 7634 роки тому
Module03 - Python Tutorial - pandas and data preprocessing The source code is available here: github.com/zhailat/Introduction-to-machine-learning-Python Zeyad Hailat
Part 01 - Anaconda and Python for Machine Learning.
Переглядів 1,5 тис.4 роки тому
This video is a tutorial on installing and managing Anaconda. It also includes a quick Python Tutorial. It is the first step to writing your machine learning code and models. The source code is available here: github.com/zhailat/Introduction-to-machine-learning-Python Zeyad Hailat
continue making videos
while running the code I am getting all loss values as NaN, filepath I have mentioned as suggested in runtime checkpoint_path = '/tmp/ckpt/checkpoint.model.keras.weights.h5'
Thank you for this explanatory tutorial. I have also followed the same code for building ANN model on regression data having 4 input variables and 1 output variable and the model is built successfully. But now, I want to optimize the ANN model's solutions by Genetic Algorithm (GA). So, for this I am following "ua-cam.com/video/ljjfrrHlxCw/v-deo.htmlsi=-DBs2Bki0p1LgABm", this tutorial as a reference but, they have used Random Classifier in place of ANN model to optimize their regression data. So, at their 19th step, they are calling their trained model into a new variable which is used later as a "fitness function" for GA. I am using "model_full = ann_viz(model, view=False, filename= 'network.gv', title='My Neural Network')" instead of their Rnadomforest classifier. So, please help me in this as I am getting error in "input_shape" i.e., "AttributeError: 'Dense' object has no attribute 'input_shape'". Although I have changed the input_shape as mentioned by you while building ANN modelto "4" as I have 4 variables.
thank you such amazing tutorial
hello i have a problem when i run the code with same data that you give, i got NaN value for loss mae mse mape val_loss val_mae val_mse val_mape
I have the same problem!
I am also getting same problem of NaN
Thanks
This is one of the best lectures on this topic. Great work.
My jupyter code on line 2 pd.read_csv('iris_dataset.csv') error "FileNotFoundError". what yould i do?
very helpful sir
What if configuration are given : input data features 20, Hidden layer 1 - 10 neurons. How can we load this data ? Code or syntax
Thank you for this. Can you show us how to get the result of a specific input?
wow
Nice video.
Excellent work! Thanks!
Why did you define your own function for the normalization? Is not it equivalent to the StandardScaler() method from SKLearn?
Yes it is but he wanted to transform data as the old way
can model.fit() be used on multiple datasets. For example, model.fit(normed_training_data1, train_labels1) model.fit(nromed_training_data2, train_labels 2) y_pred = model.predict(normed_test_data) I have 2 datasets that I want to train for the model
Thank you for the video; most places, including sklearn, show (X_train, X_test, y_train, y_test = train_test_split), why does your model have only two of them? is it because you separate the validation, or does it have any other reason?
Great video! Can you please provide the code.
For lines 20 & 21, what is the benefit of using validation?
Wow... The best hands-on explanation in youtube so far. Good work bro. Thanks a lot. Learnt a lot!!
please give the github repo
Expand description of video
Hello, your video is very good! But may I ask a question? Is this multi-class classifier is using OVO(One vs. One) or OVA(One vs. All) or RCC?
so no one-hot encoding is needed?
If all data types in your dataset are integer or float so no need to use any encoding. Encoding is used for transfering your non-numircal data to numerical values because the model can work only with numbers.
@@hggaming911 if i want to change the order, what is the code for example "Iris-setosa" = 3, "Iris-versicolor"=2, Iris-virginica" =1 instead of writing "Iris-setosa" = 1, "Iris-versicolor"=2, Iris-virginica" =3
Nice video. I followed your tutorial and it worked brilliantly on my project. On thing at the end, did you made a mistake on the confusion matrix? it seems like you are plotting predicted results against predicted results.
yeah, i think he made a mistake on the confusion matrix, and i correct it into "cm = confusion_matrix(test_labels, y_pred)" but i'am not really sure that is correct. XD
thank you, im wondering if we can get the code for this in github or something ?
Great Video! Please share tutorial on Github and share the link in description. Thanks
can you upload videos for Alex Net for multi class in python
can this be apply for multi-label classification too? if yes, where is the part i can change the algorithm to multi-label ?
Thanks for very good video , may I know, where to get the script and also dataset? Do you provide that or available somewhere. Thanks sir
Good video! Help me a lot. Pleaseeee keep doing them
Great video. Thank you.
can i have the code
Very nice!!!
Thanks!!
Amazing! Please continue on giving tutorials for us!
Thank you! Will do!