Skip to content

Commit 2b00ed9

Browse files
committed
s
1 parent c5f9d2b commit 2b00ed9

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ My assignments for CS50's Introduction to Artificial Intelligence with Python.
2121
<td>Discover it how many "degress of separation" apart two actors are.</td>
2222
<td>Breadth First Search</td>
2323
<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>
2626
</td>
2727
</tr>
2828
<tr>
2929
<td><a href="./0-search/0b-tictactoe">Tic tac toe</a></td>
3030
<td>Play tic-tac-toe against an AI that plays optimally.</td>
3131
<td>Minimax Algorithm</td>
3232
<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>
3535
</td>
3636
</tr>
3737
<tr>
@@ -40,73 +40,73 @@ My assignments for CS50's Introduction to Artificial Intelligence with Python.
4040
<td>A program to solve logic puzzles.</td>
4141
<td>Propositional Logic</td>
4242
<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>
4545
</td>
4646
</tr>
4747
<tr>
4848
<td><a href="./1-knowledge/1b-minesweeper">Minesweeper</a></td>
4949
<td>Play minesweeper or let the AI play for you.</td>
5050
<td>Propositional Logic</td>
5151
<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>
5454
</td>
5555
</tr>
5656
<tr>
5757
<td rowspan=2>Uncertainty</td>
5858
<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>
6060
<td>PageRank algorithm created by Google's CoFounders</td>
6161
<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>
6363
</td>
6464
</tr>
6565
<tr>
6666
<td><a href="./2-uncertainty/2b-heredity">Heredity</a></td>
6767
<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>
6868
<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>
7070
</tr>
7171
<tr>
7272
<td rowspan=1>Optimization</td>
7373
<td><a href="./3-optimization/3a-crossword">Crossword</a></td>
7474
<td>Generating a crossword puzzle</td>
7575
<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>
7777
</tr>
7878
<tr>
7979
<td rowspan=2>Learning</td>
8080
<td><a href="./4-learning/4a-shopping">Shopping</a></td>
8181
<td>Determining the likelihood of a user making a purchase on a website</td>
8282
<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>
8484
</tr>
8585
<tr>
8686
<td><a href="./4-learning/4b-nim">Nim</a></td>
8787
<td>Learning best strategy for playing Nim with more than one pile</td>
8888
<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>
9090
</tr>
9191
<tr>
9292
<td rowspan=1>Neural Networks</td>
9393
<td><a href="./5-neural_networks/5a-traffic">Traffic</a></td>
9494
<td>Neural networks for road signs classification (useful for self-driving cars) using GTSRB</td>
9595
<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>
9797
</tr>
9898
<tr>
9999
<td rowspan=2>Language</td>
100100
<td><a href="./6-language/6a-parser">Parser</a></td>
101101
<td>Determining the structure of a sentence by parsing for information/meaning extraction</td>
102102
<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>
104104
</tr>
105105
<tr>
106106
<td><a href="./6-language/6b-questions">Questions</a></td>
107107
<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>
108108
<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>
110110
</tr>
111111
</tbody>
112112

0 commit comments

Comments
 (0)