Skip to content

Commit 11ab0c8

Browse files
committed
s
1 parent 9637cbc commit 11ab0c8

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

+20-20
Original file line numberDiff line numberDiff line change
@@ -64,49 +64,49 @@ My assignments for CS50's Introduction to Artificial Intelligence with Python.
6464
</tr>
6565
<tr>
6666
<td><a href="./2-uncertainty/2b-heredity">Heredity</a></td>
67-
<td>XXX</td>
68-
<td>YYY</td>
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+
<td>Probability theory: Probability distribution and Joint Probability</td>
6969
<td><a href="https://cs50.harvard.edu/ai/2020/projects/2/heredity/">Theory link</a></td>
7070
</tr>
7171
<tr>
7272
<td rowspan=1>Optimization</td>
7373
<td><a href="./3-optimization/3a-crossword">Crossword</a></td>
74-
<td>XXX</td>
75-
<td>YYY</td>
76-
<td><a href="www.google.com">Theory link</a></td>
74+
<td>Generating a crossword puzzle</td>
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>
7777
</tr>
7878
<tr>
7979
<td rowspan=2>Learning</td>
8080
<td><a href="./4-learning/4a-shopping">Shopping</a></td>
81-
<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>
82-
<td>Probability theory: Probability distribution and Joint Probability</td>
83-
<td><a href="www.google.com">Theory link</a></td>
81+
<td>Determining the likelihood of a user making a purchase on a website</td>
82+
<td>Nearest-neighbor classifier</td>
83+
<td><a href="https://cs50.harvard.edu/ai/2020/projects/4/shopping/">Theory link</a></td>
8484
</tr>
8585
<tr>
8686
<td><a href="./4-learning/4b-nim">Nim</a></td>
87-
<td>XXX</td>
88-
<td>YYY</td>
89-
<td><a href="www.google.com">Theory link</a></td>
87+
<td>Learning best strategy for playing Nim with more than one pile</td>
88+
<td>Reinforcment Learning AI</td>
89+
<td><a href="https://cs50.harvard.edu/ai/2020/projects/4/nim/">Theory link</a></td>
9090
</tr>
9191
<tr>
9292
<td rowspan=1>Neural Networks</td>
9393
<td><a href="./5-neural_networks/5a-traffic">Traffic</a></td>
94-
<td>XXX</td>
95-
<td>YYY</td>
96-
<td><a href="www.google.com">Theory link</a></td>
94+
<td>Neural networks for road signs classification (useful for self-driving cars) using GTSRB</td>
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>
9797
</tr>
9898
<tr>
9999
<td rowspan=2>Language</td>
100100
<td><a href="./6-language/6a-parser">Parser</a></td>
101-
<td>XXX</td>
102-
<td>YYY</td>
103-
<td><a href="www.google.com">Theory link</a></td>
101+
<td>Determining the structure of a sentence by parsing for information/meaning extraction</td>
102+
<td>Context-free grammar formalism</td>
103+
<td><a href="https://cs50.harvard.edu/ai/2020/projects/6/parser/">Theory link</a></td>
104104
</tr>
105105
<tr>
106106
<td><a href="./6-language/6b-questions">Questions</a></td>
107-
<td>XXX</td>
108-
<td>YYY</td>
109-
<td><a href="www.google.com">Theory link</a></td>
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+
<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>
110110
</tr>
111111
</tbody>
112112

0 commit comments

Comments
 (0)