@@ -21,17 +21,17 @@ My assignments for CS50's Introduction to Artificial Intelligence with Python.
21
21
<td>Discover it how many "degress of separation" apart two actors are.</td>
22
22
<td>Breadth First Search</td>
23
23
<td>
24
- <a href="https://www.youtube.com/watch?v=bwd0eSYMlmM&t=28s">Video link </a>
25
- <a href="https://cs50.harvard.edu/ai/2020/projects/0/degrees/">Theory link </a>
24
+ <a href="https://www.youtube.com/watch?v=bwd0eSYMlmM&t=28s">Video</a>
25
+ <a href="https://cs50.harvard.edu/ai/2020/projects/0/degrees/">Theory</a>
26
26
</td>
27
27
</tr>
28
28
<tr>
29
29
<td><a href="./0-search/0b-tictactoe">Tic tac toe</a></td>
30
30
<td>Play tic-tac-toe against an AI that plays optimally.</td>
31
31
<td>Minimax Algorithm</td>
32
32
<td>
33
- <a href="https://www.youtube.com/watch?v=ukjCBsOTEFI">Video link </a>
34
- <a href="https://cs50.harvard.edu/ai/2020/projects/0/tictactoe/">Theory link </a>
33
+ <a href="https://www.youtube.com/watch?v=ukjCBsOTEFI">Video</a>
34
+ <a href="https://cs50.harvard.edu/ai/2020/projects/0/tictactoe/">Theory</a>
35
35
</td>
36
36
</tr>
37
37
<tr>
@@ -40,73 +40,73 @@ My assignments for CS50's Introduction to Artificial Intelligence with Python.
40
40
<td>A program to solve logic puzzles.</td>
41
41
<td>Propositional Logic</td>
42
42
<td>
43
- <a href="https://www.youtube.com/watch?v=h_FmpQOj81M">Video link </a>
44
- <a href="https://cs50.harvard.edu/ai/2020/projects/1/knights/">Theory link </a>
43
+ <a href="https://www.youtube.com/watch?v=h_FmpQOj81M">Video</a>
44
+ <a href="https://cs50.harvard.edu/ai/2020/projects/1/knights/">Theory</a>
45
45
</td>
46
46
</tr>
47
47
<tr>
48
48
<td><a href="./1-knowledge/1b-minesweeper">Minesweeper</a></td>
49
49
<td>Play minesweeper or let the AI play for you.</td>
50
50
<td>Propositional Logic</td>
51
51
<td>
52
- <a href="https://www.youtube.com/watch?v=Uz8VEFvfnOU">Video link </a>
53
- <a href="https://cs50.harvard.edu/ai/2020/projects/1/minesweeper/">Theory link </a>
52
+ <a href="https://www.youtube.com/watch?v=Uz8VEFvfnOU">Video</a>
53
+ <a href="https://cs50.harvard.edu/ai/2020/projects/1/minesweeper/">Theory</a>
54
54
</td>
55
55
</tr>
56
56
<tr>
57
57
<td rowspan=2>Uncertainty</td>
58
58
<td><a href="./2-uncertainty/2a-pagerank">Pagerank</a></td>
59
- <td>PageRank works by counting the number and quality of links to a page to determine a rough estimate of how important the website is</td>
59
+ <td>PageRank works by counting the number and quality ofs to a page to determine a rough estimate of how important the website is</td>
60
60
<td>PageRank algorithm created by Google's CoFounders</td>
61
61
<td>
62
- <a href="https://cs50.harvard.edu/ai/2020/projects/2/pagerank/">Theory link </a>
62
+ <a href="https://cs50.harvard.edu/ai/2020/projects/2/pagerank/">Theory</a>
63
63
</td>
64
64
</tr>
65
65
<tr>
66
66
<td><a href="./2-uncertainty/2b-heredity">Heredity</a></td>
67
67
<td>Bayesian Network of genes is used by AI to infer the probability distribution for each person’s genes, as well as the probability distribution for whether any person will exhibit the trait in question</td>
68
68
<td>Probability theory: Probability distribution and Joint Probability</td>
69
- <td><a href="https://cs50.harvard.edu/ai/2020/projects/2/heredity/">Theory link </a></td>
69
+ <td><a href="https://cs50.harvard.edu/ai/2020/projects/2/heredity/">Theory</a></td>
70
70
</tr>
71
71
<tr>
72
72
<td rowspan=1>Optimization</td>
73
73
<td><a href="./3-optimization/3a-crossword">Crossword</a></td>
74
74
<td>Generating a crossword puzzle</td>
75
75
<td>Modelled as constraint satisfaction problem</td>
76
- <td><a href="https://cs50.harvard.edu/ai/2020/projects/3/crossword/">Theory link </a></td>
76
+ <td><a href="https://cs50.harvard.edu/ai/2020/projects/3/crossword/">Theory</a></td>
77
77
</tr>
78
78
<tr>
79
79
<td rowspan=2>Learning</td>
80
80
<td><a href="./4-learning/4a-shopping">Shopping</a></td>
81
81
<td>Determining the likelihood of a user making a purchase on a website</td>
82
82
<td>Nearest-neighbor classifier</td>
83
- <td><a href="https://cs50.harvard.edu/ai/2020/projects/4/shopping/">Theory link </a></td>
83
+ <td><a href="https://cs50.harvard.edu/ai/2020/projects/4/shopping/">Theory</a></td>
84
84
</tr>
85
85
<tr>
86
86
<td><a href="./4-learning/4b-nim">Nim</a></td>
87
87
<td>Learning best strategy for playing Nim with more than one pile</td>
88
88
<td>Reinforcment Learning AI</td>
89
- <td><a href="https://cs50.harvard.edu/ai/2020/projects/4/nim/">Theory link </a></td>
89
+ <td><a href="https://cs50.harvard.edu/ai/2020/projects/4/nim/">Theory</a></td>
90
90
</tr>
91
91
<tr>
92
92
<td rowspan=1>Neural Networks</td>
93
93
<td><a href="./5-neural_networks/5a-traffic">Traffic</a></td>
94
94
<td>Neural networks for road signs classification (useful for self-driving cars) using GTSRB</td>
95
95
<td>Computer Vision with Neural Networks (Tensorflow)</td>
96
- <td><a href="https://cs50.harvard.edu/ai/2020/projects/5/traffic/">Theory link </a></td>
96
+ <td><a href="https://cs50.harvard.edu/ai/2020/projects/5/traffic/">Theory</a></td>
97
97
</tr>
98
98
<tr>
99
99
<td rowspan=2>Language</td>
100
100
<td><a href="./6-language/6a-parser">Parser</a></td>
101
101
<td>Determining the structure of a sentence by parsing for information/meaning extraction</td>
102
102
<td>Context-free grammar formalism</td>
103
- <td><a href="https://cs50.harvard.edu/ai/2020/projects/6/parser/">Theory link </a></td>
103
+ <td><a href="https://cs50.harvard.edu/ai/2020/projects/6/parser/">Theory</a></td>
104
104
</tr>
105
105
<tr>
106
106
<td><a href="./6-language/6b-questions">Questions</a></td>
107
107
<td>Perform Question Answering (QA) with document retrieval and passage retrieval tasks. Document retrieval will first identify which document(s) are most relevant to the query. Once the top documents are found, the top document(s) will be subdivided into passages so that the most relevant passage to the question can be determined.</td>
108
108
<td>Most relevant documents/passages are determined by tf-idf to rank documents and query term density measure metric for scoring passages</td>
109
- <td><a href="https://cs50.harvard.edu/ai/2020/projects/6/questions/">Theory link </a></td>
109
+ <td><a href="https://cs50.harvard.edu/ai/2020/projects/6/questions/">Theory</a></td>
110
110
</tr>
111
111
</tbody>
112
112
0 commit comments