Overview Artificial Intelligence Course | Stanford CS221: Learn AI (Autumn 2019)

  Рет қаралды 582,970

Stanford Online

Stanford Online

Күн бұрын

For more information about Stanford’s Artificial Intelligence professional and graduate programs, visit: stanford.io/3meRgaI
Topics: Overview of course, Optimization
Percy Liang, Associate Professor & Dorsa Sadigh, Assistant Professor - Stanford University
onlinehub.stanford.edu/
Associate Professor Percy Liang
Associate Professor of Computer Science and Statistics (courtesy)
profiles.stanford.edu/percy-l...
Assistant Professor Dorsa Sadigh
Assistant Professor in the Computer Science Department & Electrical Engineering Department
profiles.stanford.edu/dorsa-s...
To follow along with the course schedule and syllabus, visit:
stanford-cs221.github.io/autu...
#artificialintelligencecourse
0:00 Introduction
3:30 Why AI?
15:10 AI as Agents
18:20 AI Tools
20:39 Biases
23:28 Summary
34:08 PacMan
43:11 Perquisites, Homework, Exams

Пікірлер: 49
@pandukawb
@pandukawb Жыл бұрын
It is amazing that we are getting this knowledge for free!
@jeremycornish-ford2435
@jeremycornish-ford2435 Жыл бұрын
"Do not forsake wisdom, and she will protect you; love her, and she will watch over you. Wisdom is supreme; therefore get wisdom. Though it cost all you have, get understanding." - Proverbs 4:6-7. Thank you Stanford.
@WolfRex4
@WolfRex4 2 жыл бұрын
This is amazing thank you!!! So refreshing and so unique.
@GoroniG
@GoroniG 11 ай бұрын
seeing this in 2023 is quite intresting. yay baby
@aerodynamico6427
@aerodynamico6427 2 жыл бұрын
The real course begins at 4:52, with the origins of AI.
@miguelcalvache706
@miguelcalvache706 2 жыл бұрын
Thanks a lot indeed for sharing all this knowledge!
@user-rt9rw6wf2o
@user-rt9rw6wf2o 9 ай бұрын
learning all video this can we become Artificial intelliger
@user-iy4cf5wd6f
@user-iy4cf5wd6f Жыл бұрын
I finished first class today!
@swavekbu4959
@swavekbu4959 6 ай бұрын
Excellent teacher! Enjoyable to listen to.
@kannonpayne2614
@kannonpayne2614 2 ай бұрын
Ikr I’d be a Harvard graduate if all my teachers taught like him.
@tlzg
@tlzg 3 ай бұрын
Wow, this is gold!!!❤
@do-awr1068
@do-awr1068 Жыл бұрын
its actually hard for a beginner but its amazing
@alexchen1300
@alexchen1300 10 ай бұрын
agreed man, took me a few hours to get these codes straight
@aimennadeem7243
@aimennadeem7243 2 жыл бұрын
Lecture begins at 2:45
@rafael_Reis_rv
@rafael_Reis_rv 5 ай бұрын
Rewarding Content!!
@adhamadel8937
@adhamadel8937 Жыл бұрын
Amazing
@lindacarlen6250
@lindacarlen6250 4 ай бұрын
Thank you!
@JonB-tv8vs
@JonB-tv8vs Жыл бұрын
Interesting. Lost of concern about bias, but then the root vulnerability of bias is found in modeling. If you want a specific outcome (a bias on equity versus equality, for example), model it and everything will be based on that. GIGO.
@dyllanndaniel4118
@dyllanndaniel4118 8 ай бұрын
Woah! This is so interesting
@mehdibahmani3791
@mehdibahmani3791 Жыл бұрын
dorsa ❤
@alpeaceandlove
@alpeaceandlove 8 ай бұрын
yo thanks man for ya knowledge
@calvin_713
@calvin_713 Жыл бұрын
24:48 I thought the dead silence after professors giving a question won't happen in stanford courses 🤣
@phosphoricx
@phosphoricx 2 ай бұрын
Writing the code for a demo live in class is bawler.
@vamsikrishna_1289
@vamsikrishna_1289 5 ай бұрын
In which platform does the code get executed
@user-bl6ne5uw9b
@user-bl6ne5uw9b 6 ай бұрын
Can't we just find the max lenght of the two strings,in this case the max length will be of string 2 which is "The Cats" then use the LCS Algo using the DP(recursion) which returns the longest common subsequence and then substract it from the max length of the string. Can we approach this way someone please look into this!
@user-bl6ne5uw9b
@user-bl6ne5uw9b 6 ай бұрын
I think doing this by LCS would be easy,First we find the max length of the two strings: int max(str1,str2){ s1=sizeof(str1); s2=sizeof(str2); if(s1>s2){ max=s1; } else{ max=s2; } return(max); } int LCS(m,n){ if(m==0) return(n); if(n==0) return(m); else{ if(s[m]==t[n]) return(1+LCS(m-1,n-1)); else a=min(LCS(m-1,n),LCS(m,n-1)); return(a); } } Finally return(max-LCS(m,n)) This way we can find out the minimum edit distance between the two strings. NOTE -> We have not consirdered the space while calculating the max! Please do correct if I am wrong anyone??
@lindailiana9858
@lindailiana9858 4 күн бұрын
What are the two views?
@UsamaKhan-oj2nn
@UsamaKhan-oj2nn 2 ай бұрын
Sir where I get school emails for piazza plate form
@connerwhite5351
@connerwhite5351 Жыл бұрын
Glad this is difficult to learn. Means there will be few that get into it. Which means more 💲💵. At least for a decent period of time
@tylarrj
@tylarrj 10 ай бұрын
30:00
@ExploreEight
@ExploreEight 6 ай бұрын
little difficult
@ameendababat9886
@ameendababat9886 6 ай бұрын
23:32
@monkmode9138
@monkmode9138 Жыл бұрын
I didn't understand how the cache works. Can someone explain please? 1:14:47
@monkmode9138
@monkmode9138 Жыл бұрын
We use cache after we do all computing ( after "result = min(subCost, delCost, insCost)" ) so how does it benefit to us?
@JessicaAnhDao
@JessicaAnhDao 10 ай бұрын
You check the cache FIRST before running all the computation "if (m,n) in cache => return cache(m,n)" lines at the top before everything else. So basically if the result is already in the cache then there is no need to run 3 computations again, just return the result
@dakshinamurthy8066
@dakshinamurthy8066 Жыл бұрын
Its hard to understand the lecture, any suggestions
@monkmode9138
@monkmode9138 Жыл бұрын
Do you know Python? Maybe it's hard because you don't know python syntax.
@dakshinamurthy8066
@dakshinamurthy8066 Жыл бұрын
@@monkmode9138 okay..👍
@shoaibyehya3600
@shoaibyehya3600 Жыл бұрын
Thank you
@jameshopkins3541
@jameshopkins3541 5 ай бұрын
UFF INSOPORTABLE PALABRERIA
@jameshopkins3541
@jameshopkins3541 5 ай бұрын
UFF NO OKEY. SO DISGUSTING BLA BLA BLAAAAAA
@kartiksharma7589
@kartiksharma7589 3 ай бұрын
Such an amazing session. But i cant understand as to why eta is used in generating new value of w that too without conditions. Can someone clear this up. Would be much help
@rolandduplessis5132
@rolandduplessis5132 2 ай бұрын
That was a bit quick right. 😅 If my math serves me right, eta is the value by which you jump after each iteration. Almost the same as the learning rate in which is in alot of ai stuff. I'm probably butchering the explanation. But all you need to know is that it is a parameter you play around with in these types of models and the lower it is the longer it takes for the model to reach the minimum and vice versa
@theatheistmonk5681
@theatheistmonk5681 Ай бұрын
Here the problem is relatively simpler i mean the graph is simple. There is just one minimum. In case where we have functions where there are more than 1 minimum, the slope is flat or there is a narrow pit in a graph, it becomes essential that we control the step size by which we decrease the gradient after each iteration otherwise we might miss the minimum. If we decrease the starting point everytime with a larger value we are decending down the graph too fast and at some point it will skip the minimum point and would never converge. Also if there at any point in graph a plateau then a very small step size would believe that to be minimum as it would never be able to cross it in such small iterations. So we play around with this value to get desired result and to reduce the error in order to have better predictions.
@chassan
@chassan 9 ай бұрын
WHY DON'T YOU. EXPLAIN HOW THE WORD "ALGORITHM" COME FROM? IT'S THE SOUL OF AI!
@yannickwessidjam2036
@yannickwessidjam2036 8 ай бұрын
😂😂 I am glad we have people like you in the world.
@Rahulsharma-rg8ce
@Rahulsharma-rg8ce 5 ай бұрын
it is not relevant.
Stanford CS25: V4 I Hyung Won Chung of OpenAI
36:31
Stanford Online
Рет қаралды 24 М.
FOOTBALL WITH PLAY BUTTONS ▶️❤️ #roadto100million
00:20
Celine Dept
Рет қаралды 15 МЛН
He tried to save his parking spot, instant karma
00:28
Zach King
Рет қаралды 22 МЛН
How to bring sweets anywhere 😋🍰🍫
00:32
TooTool
Рет қаралды 30 МЛН
Artificial Intelligence | 60 Minutes Full Episodes
53:30
60 Minutes
Рет қаралды 6 МЛН
1. Introduction to Human Behavioral Biology
57:15
Stanford
Рет қаралды 17 МЛН
The Most Important Algorithm in Machine Learning
40:08
Artem Kirsanov
Рет қаралды 257 М.
MIT Introduction to Deep Learning | 6.S191
1:09:58
Alexander Amini
Рет қаралды 253 М.
Andrew Ng: Opportunities in AI - 2023
36:55
Stanford Online
Рет қаралды 1,8 МЛН
Stanford's FREE data science book and course are the best yet
4:52
Python Programmer
Рет қаралды 652 М.
16. Learning: Support Vector Machines
49:34
MIT OpenCourseWare
Рет қаралды 1,9 МЛН
FOOTBALL WITH PLAY BUTTONS ▶️❤️ #roadto100million
00:20
Celine Dept
Рет қаралды 15 МЛН