Like the video and comment below to let KZbin know that you are learning Machine learning with Codanics.
@syedabdulwahabshah32802 жыл бұрын
i have followed your video and my accuracy score is o.56,0.58,0.59 why ? also my predicted answer come in float number ?
@asadtariq60802 жыл бұрын
For **Assignment Hint** Indentation errors are pretty common in Python. Understand the logic what we actually want to save and what we actually are saving. Debugging is the way to troubleshoot your problem, you can simply print out each data in the loop and check whats the mistake(desi Debugging :D ).
@HsnHny2 жыл бұрын
0:01 Start Watching Logistic Regression and Image Classification Case Study.
@aajizattari2 жыл бұрын
27:50, the statement "index+=1" on line 10 of the cell, is currently inside if statement. It should be indented back one level so that the code functions properly1
plt.figure(figsize=(20,4)) for index,(image,label) in enumerate(zip(digits.data[0:10],digits.target[0:10])): plt.subplot(1,11 , index+1) plt.imshow(np.reshape(image, (8,8)),cmap=plt.cm.gray) plt.title('training: %d ' %label, fontsize = 20)
@ramizch1739 Жыл бұрын
@samanfatima how to get these long codes
@zainabbhatti83302 жыл бұрын
17:17(from sklearn import metrics) and then metrics.confusion_matrix()
@SaleemKhan-vv3ks2 жыл бұрын
Great job Murshid. #LearningML_with_codanics
@farmanullah3882 жыл бұрын
16:45 Import the library and also define the prediction variable
@AR-Edzone2 жыл бұрын
17:13 From sklearn import metrics And then move further
@YasirMehmood-ni1zh2 жыл бұрын
Time Pause #17:23 Import Library from sklearn import metrics
@faizanarshad79272 жыл бұрын
Yes. Started!
@ehtishamahmad20322 жыл бұрын
16:46 importing metrices from sklearn library
@MuhammadArslan-dz9fi2 жыл бұрын
#17:13 From sklearn import metrics
@mehwishhanif45472 жыл бұрын
Started watching
@FAIFACTS2 жыл бұрын
Started watching Sir
@quratulainhabib87482 жыл бұрын
started watching logistic regression and image classification case study in Python.
@danishnawaz16252 жыл бұрын
26:00 Due to wrong indentation predicted and actual values are same
@goharrahman56112 жыл бұрын
Started 17:00 from sklearn import matrix
@ahmedullah87992 жыл бұрын
17:10 first import the matrice from sklearn and then go through
@harisahmed69015 ай бұрын
Video completed and implemented sir :)
@amnafarooq58712 жыл бұрын
17:17 from sklearn import metrix import confusion matrix
@Fayez-tk7ph2 жыл бұрын
Started!
@mehramali46522 жыл бұрын
Starting watching
@workplace96722 жыл бұрын
16:44 from sklearn import metrics
@azeemjaved99632 жыл бұрын
@17:14 from sklearn import metrics
@mmateenalihashmi74402 жыл бұрын
started watching....
@abro872 жыл бұрын
watched completely
@NasirJumani2 жыл бұрын
0:00 Started watching
@asadtariq60802 жыл бұрын
18:10 Syntax Error because of Spelling of 'prediction'
@nabeelarajput73162 жыл бұрын
Started .
@muhammadabubakar89302 жыл бұрын
0:00 Started
@naseerkhan-lu8kn2 жыл бұрын
16:47 matrices spelling error, metrics, Confusion matrix import is miss from sklearn
@islamhussain80262 жыл бұрын
Started 🙂
@fahadnajeeb61322 жыл бұрын
00:01 started
@sammadullah82542 жыл бұрын
started..
@sana_1312 жыл бұрын
#ML_with_codanics❣️
@shahidiqbal05062 жыл бұрын
Logistic regression and image classification is clear
@fahadnajeeb61322 жыл бұрын
16:35 library not imported confusion matrices
@hassanorakzai89812 жыл бұрын
@0:01 Start watching
@muhammadtayyabfarooq72832 жыл бұрын
0:10 started
@faheemk11112 жыл бұрын
0:05 started watching
@farmanullah3882 жыл бұрын
0:0 Started watching
@ikrambashir86042 жыл бұрын
Started
@ishanbanjara734 Жыл бұрын
ASSIGNMENT _________________________________ #Get missclassified Labels index=0 MCI=[] for label, predict in zip(y_test,predictions): if predict!=label: MCI.append(index) index+=1 plt.figure(figsize=(20,4)) for index,misclass in enumerate(MCI[0:5]): plt.subplot(1,10,index+1) plt.imshow(np.reshape(X_test[misclass],(8,8)), cmap=plt.cm.gray) plt.title("P: {} , A: {} ".format(predictions[misclass],y_test[misclass]))
@syedriazali10262 жыл бұрын
00:01 start watching
@YasirMehmood-ni1zh2 жыл бұрын
#17:34 Prediction Spelling Mistake
@ramizch1739 Жыл бұрын
from where to get these long codes of matplotlib and seaborn need help thanks in advance🙏
@AbdulHannan-wf5ye2 жыл бұрын
17:15 FROM SKLEARN IMPORT METRICS
@aasimnawaz2 жыл бұрын
6:46, baba jee the image is not very clear, how we set its quality better
@rkmofficial2022 жыл бұрын
started
@apricotadventure2 жыл бұрын
Started . Now at 16:28
@faizaafzal1212 жыл бұрын
0:00 watching
@azeemjaved99632 жыл бұрын
@20:16 import seaborn as sns
@azeemjaved99632 жыл бұрын
@0:30 started
@ahsanzafar49212 жыл бұрын
Assignment code # finding indexes of data points where model misclassified them misclassified_label = [] for index,(label, prediction) in enumerate(zip(y_test,y_pred)): if label!=prediction: misclassified_label.append(index) # plotting the misclassified labels what they actaully were and what the model predicted them to be plt.figure(figsize=(20,8)) for plotindex,bad_index in enumerate(misclassified_label[:10]): plt.subplot(2,5, plotindex + 1) plt.imshow(np.reshape(X_test[bad_index],(8,8)),cmap=plt.cm.gray) plt.title("Training {}".format(label)) plt.title("Actual {}, Predicted {}".format(y_test[bad_index],y_pred[bad_index]))
@yasmeenamjad58072 жыл бұрын
11 : 55 started
@hajraanwar82132 жыл бұрын
From sklearn import metrics ist.
@ahmedullah87992 жыл бұрын
0:01 startted
@letsgoo51762 жыл бұрын
how can we transfer manual handwritten images to dataset for classification testing ?
@letsgoo51762 жыл бұрын
@Amir Javaid Thanks, Scanned done .. How to import a hundred images in Python and make Dataset for ML ? Am I missing any lecture?
@letsgoo51762 жыл бұрын
@Amir Javaid The idea is to get handwritten Digit/Alphabet from different people of a different races, age etc to judge/train the system to identify their handwritten, or you may say analyse the different factors involved on such handwritten analysis
@islamhussain80262 жыл бұрын
@@letsgoo5176 simply the way we import other data like csv file. first convert your images to grayscale and then labeled your images like 1,2,3,4,5 and so on. and then put your data into a single folder and provide the path or put in the same folder where your ipynb file is saved and load or read them from there.
@faizaafzal1212 жыл бұрын
From sklearn import confusion matrix
@ahmedullah87992 жыл бұрын
0:01 satarted
@leezatariq28422 жыл бұрын
1:39 Watching
@jmych2 жыл бұрын
Watching
@muhammadanwarulhassan68232 жыл бұрын
If someone facing this error ""Output exceeds the size limit. Open the full output data in a text editor"" Simply remove cm="Spectral " from the 2nd line of code.
@Engr.Umair_Mueed2 жыл бұрын
Hi Mates, I am getting this error while running confusion matric can you please help Found input variables with inconsistent numbers of samples: [360, 10]
@sanashah4731 Жыл бұрын
present 51 and 53 video is missing,
@ashhadahmed72 Жыл бұрын
16:39: metrics*
@SoniaAkter-ce9rj Жыл бұрын
This error occurs. But why? TypeError Traceback (most recent call last) TypeError: only size-1 arrays can be converted to Python scalars The above exception was the direct cause of the following exception: ValueError Traceback (most recent call last) in () ----> 1 logreg = LogisticRegression().fit(X_train, y_train) 4 frames /usr/local/lib/python3.10/dist-packages/sklearn/utils/_array_api.py in _asarray_with_order(array, dtype, order, copy, xp) 183 if xp.__name__ in {"numpy", "numpy.array_api"}: 184 # Use NumPy API to support order --> 185 array = numpy.asarray(array, order=order, dtype=dtype) 186 return xp.asarray(array, copy=copy) 187 else: ValueError: setting an array element with a sequence.
@NasirJumani2 жыл бұрын
For all those who are finding an error, it's somewhere in the second last block. :)
@hayatop35552 жыл бұрын
Yes same
@mugheezAhmed2 жыл бұрын
Cant get u guys which line we use back space?
@NasirJumani2 жыл бұрын
@@mugheezAhmed index = +1 me indentation error hai
@MuhammadAswadking2 жыл бұрын
@@NasirJumani sir problem still not resolved
@aasimnawaz2 жыл бұрын
8:35, #split the data , there is typo, here mentioned dat
@fahadnajeeb61322 жыл бұрын
time stamp 20:30 got an error " 'QuadMesh' object has no property 'suqare' " " QuadMesh has no property square while plotting confusion matrix