PyTorch nn Module
39:27
Күн бұрын
Пікірлер
@saptarshisanyal4869
@saptarshisanyal4869 9 минут бұрын
This is world class content.
@parthivpatel3139
@parthivpatel3139 11 минут бұрын
Sir I have a question in this you only use the lightgbm model of machine learning but in the experiment stage we have to play with different models so we can select the best model how can we deal with multiple models in a single project and choose the best one as you shown in step 2 mlfow how you track and monitor multiple model ??
@rohulamin496
@rohulamin496 2 сағат бұрын
We extend our heartfelt gratitude to the Great and Amazing God for bestowing upon you abundant happiness in life. We sincerely appreciate the precious time you have dedicated to us, with warm regards from Pakistan.
@arindamInsightFullMath
@arindamInsightFullMath 2 сағат бұрын
great lec as always ❤❤❤❤❤❤`
@AbdusSamadAzad-m4l
@AbdusSamadAzad-m4l 5 сағат бұрын
You are the best teacher of Data Science.
@_PrithvirajPatil_
@_PrithvirajPatil_ 7 сағат бұрын
Could you please make video on DL projects,and also llm finetuning
@_PrithvirajPatil_
@_PrithvirajPatil_ 7 сағат бұрын
Damm what in depth explaination,I had bought krish naiks udemy course in which transformers is taught in a section and i couldnt understand what he was saying ,so i came here ,man i wish i had learned complete tranformers from here,and I might actually re learn everything using this playlist(transformer).Thank you so much for this indepth intuition
@amar_bahubali
@amar_bahubali 8 сағат бұрын
excellent!
@SupratimMukherjee-st1pi
@SupratimMukherjee-st1pi 10 сағат бұрын
Corrected Code....use this👇👇👇 (X_train, y_train), (X_test, y_test) = imdb.load_data(num_words=10000) X_train = pad_sequences(X_train, padding='post', maxlen=50) X_test = pad_sequences(X_test, padding='post', maxlen=50) model = Sequential() model.add(Embedding(input_dim=10000, output_dim=2, input_shape=(50,))) model.add(SimpleRNN(32, return_sequences=False)) model.add(Dense(1, activation='sigmoid')) model.summary() model.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy']) model.fit(X_train, y_train, validation_data=(X_test, y_test), epochs=10)
@sampadkar19
@sampadkar19 11 сағат бұрын
Will You Continue Deep Learning with Pytorch Just like you did in the 100 days of Deep Learning with Tensorflow? It will be Very Helpful ❤ Thanks for continuing the playlist.
@harshdewangan725
@harshdewangan725 11 сағат бұрын
The best explanation I have seen in the internet and offline. Thanks a lot.
@MaharMuhammadAown
@MaharMuhammadAown 12 сағат бұрын
Incredibly delivered the concept in very clear manner. Loved it sir!!! Great keep it up sir
@anmolpandey5692
@anmolpandey5692 12 сағат бұрын
Kya bawli chiz hai yaar😵‍💫Perfect!!!😍
@thetouristlokesh
@thetouristlokesh 12 сағат бұрын
sir pls suggest from which research papers should we begin? and how to decide how to study them...
@okayokay6317
@okayokay6317 13 сағат бұрын
nice video ! Clearly explained
@yuvrajsharma2635
@yuvrajsharma2635 15 сағат бұрын
🤩🤩🤩🤩
@okayokay6317
@okayokay6317 15 сағат бұрын
Nice video !
@yuvrajsharma2635
@yuvrajsharma2635 15 сағат бұрын
thanksss soo muchh
@sonalkapuriya4944
@sonalkapuriya4944 17 сағат бұрын
Best of the best video
@maheshdhumal7449
@maheshdhumal7449 17 сағат бұрын
Code to check intersection point class Point: def __init__(self,x,y): self.x_cod = x self.y_cod = y self.z = 0 def __str__(self): return "<{},{}>".format(self.x_cod,self.y_cod) def euclidean_distance(self,other): return ((self.x_cod - other.x_cod)**2 + (self.y_cod - other.y_cod)**2)**0.5 def distance_from_origine(self): # return ((self.x_cod - 0 )**2 + (self.y_cod - 0 )**2)**0.5 >> (self.x_cod**2 + self.y_cod**2)**0.5 return self.euclidean_distance(Point(0,0)) class Line: def __init__(self,A,B,C): self.A = A self.B = B self.C = C def __str__(self): return "{}x + {}y + {} = 0".format(self.A,self.B,self.C) def point_on_line(line,point): if line.A*point.x_cod + line.B*point.y_cod + line.C == 0: return "Point lies on line" else: return "Point elsewhere not on line" def shortest_distance(line,point): # d = |Ax1 + By1 + C|]/ √(A**2 + B**2) return round((abs(line.A*point.x_cod + line.B*point.y_cod + line.C)/ (line.A**2 + line.B**2)**0.5),2) def intersection_check(line,line1): # determinant of the coefficient matrix is D a1.b2 - a2b1 id D == 0 lines are either parallel or coincident line.D = line.A*line1.B - line1.A*line.B if line.D == 0: return "Line are either parallel or coincident" else: line.D_x = line.C*line1.B -line1.C*line.B line.D_y = line.A*line1.C -line1.A*line.C return "Lines intersect at coordinate <{},{}>".format((line.D_x/line.D),(line.D_y/line.D)) L2 = Line(1,2,-1) L3 = Line(2,3,-5) print(L1) print(L3) L2.intersection_check(L3)
@bansarigaloria6149
@bansarigaloria6149 18 сағат бұрын
1 like is not enough...1000000 likes for this video and hardwork👍👍
@vanshsamaiya
@vanshsamaiya 19 сағат бұрын
I guess you are wrong at something. I am a fan of yours and been following you for a long time; However in this video I found a mistake, maybe I am wrong so please correct me: for instance at kzbin.info/www/bejne/jn-7q4mcftmKfbssi=cmbLuIazIkyAvILS&t=1674 - for the perceptron transformation of line 4x+7y+17 = 0 the point (1,1) is in +ve direction and if I want it to be moved to the -ve side, just by substracting (1,1,1) from coefficients will make the line equation 3x+6y+16 = 0 or even adding (1,1,1) from coefficients will make the line equation 5x+8y+18 = 0 both these lines still have (1,1) in the +ve direction. There might be some other transformation involved I guess, but if I am wrong please correct me, I would be grateful.
@talhazuberi71
@talhazuberi71 20 сағат бұрын
also please on seq2seq
@talhazuberi71
@talhazuberi71 20 сағат бұрын
Hi, Nitish sir. I hope you are doing great. Could you please create an end-to-end project using transformers? It would help us a lot.
@ashishbakoliya3828
@ashishbakoliya3828 20 сағат бұрын
Isme ye saare features ko implement krne ke liye konsa platform use krna hai ?
@AdityaSharma-k9f
@AdityaSharma-k9f 20 сағат бұрын
Hi Sir I am currently working as a Django developer with over 2.5 years of experience in Django and DRF (Django Rest Framework). I am looking to enhance my skills and am considering transitioning into the field of LLMs (Large Language Models) and Generative AI. Although I do not have a formal technical degree, such as a BTech or BCA, I am already working as a developer and am comfortable with understanding and writing code. My question is: how challenging would it be for someone without a technical degree to find a job in the LLM and Generative AI fields? I recently watched some of your KZbin videos on PyTorch, where you introduced concepts related to LLMs and Generative AI. I found your explanations to be very clear and easy to follow, which has encouraged me to explore this area further. I would appreciate any advice or guidance you can provide. Thank you!
@aryansoni57
@aryansoni57 21 сағат бұрын
this was uploaded only 3 years ago , i am watching this after chatgpt became a norm , progress ig
@transform2532
@transform2532 21 сағат бұрын
@3:14 Aren't Foundation Models are trained to gain a broad understanding ?
@RaviSahu-dr6ee
@RaviSahu-dr6ee 22 сағат бұрын
The only teacher who taught us in any condition, even noise, as proven by this video. He is the best teacher, providing perfect explanations even in challenging conditions. salute sir......
@purubhatnagar483
@purubhatnagar483 23 сағат бұрын
awesome man, this shows how much dedication you have given to this
@07_PulkitGarg
@07_PulkitGarg 23 сағат бұрын
anyone please share the link of the previous videos, in which the left out topics have been covered
@tannaprasanthkumar9119
@tannaprasanthkumar9119 23 сағат бұрын
It wss so informative
@bikashchandrasahoo7190
@bikashchandrasahoo7190 Күн бұрын
Pillow libraries install hua but Mera error araha
@shovobhai
@shovobhai Күн бұрын
Bhai did you make video about matrix differention you mention in the vidoe ? If yes kindly please provide the link
@mohdtoufique7446
@mohdtoufique7446 Күн бұрын
Hi Team...Thanks for the content Is there any regex video on Campusx you tube channel
@tanmaygupta7986
@tanmaygupta7986 Күн бұрын
where we get the solution of these task
@kittusingh6206
@kittusingh6206 Күн бұрын
Calculas and probability for machine learning is or bhi vedio lao na
@mohdhammadansari9767
@mohdhammadansari9767 Күн бұрын
ALL THESE FILES ARE AVILAIBLE AT KAGGLE JUST SEARCH THE NAME YOU WILL GET IT
@shashanksharma8901
@shashanksharma8901 Күн бұрын
superb sir
@surajjagtap3395
@surajjagtap3395 Күн бұрын
Also continue MLOPS playlist
@SantoshYadav-u5h
@SantoshYadav-u5h Күн бұрын
Namaste sir aap ne Jo machine learning ki book bataye hai us book ka writer aur publication name teeno book ka Bata deejiye please
@saaduddinshaikh5300
@saaduddinshaikh5300 Күн бұрын
Sir you are amazing
@abhayjoshi8269
@abhayjoshi8269 Күн бұрын
YoiTube data set kha he?
@codedByAyush
@codedByAyush Күн бұрын
Bhaiya apke jaisa koi nahi 🔥🔥
@mysteriousworld304
@mysteriousworld304 Күн бұрын
Bhai sahab hat's off to you, kyaa padhaya hai, never imagine things like that, how smoothly and clearly perform the every topic, itna to koi nahi padhata, me kisi se bhi bet lagaa sakta hu, isse accha kisi ne youtube par padhaya ho to, aur shayd hi paid course me bhi ye chize naa batate ho, but yaa you doing such great job, mazaa aa gaya padh ke jabki me already ye sab janta hu phir bhi maza aa gaya, thanks ❤
@Harish_Gupta308
@Harish_Gupta308 Күн бұрын
Today it has been proved that not everyone will get God.
@pasunurukumar
@pasunurukumar Күн бұрын
i study masters in USA in AI, your way of explanation is far better than any university lecture.
@learnwithme3596
@learnwithme3596 Күн бұрын
question and Answer System for E commerce 😊❤
@laxmiagarwal3285
@laxmiagarwal3285 Күн бұрын
Very nice explanation This 100 days of deep learning videos has developed my interest in deep learning Thank you so much sir 😊
@anusha6033
@anusha6033 2 күн бұрын
I must say, sir you teach way better than Krish Naik.