Skip to content

Tailung42/CS50AI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CS50's Introduction to Artificial Intelligence with Python

This repository contains my project solutions for CS50's Introduction to Artificial Intelligence with Python offered by Harvard University.

Course Overview

CS50 AI explores the concepts and algorithms at the foundation of modern artificial intelligence, diving into the ideas that give rise to technologies like game-playing engines, handwriting recognition, and machine translation. Through hands-on projects, I gained exposure to the theory behind graph search algorithms, classification, optimization, reinforcement learning, and other topics in artificial intelligence and machine learning.

Projects

Week 0: Search

  • Degrees - Determines the shortest path between any two actors by choosing a sequence of movies that connects them
  • Tic-Tac-Toe - Implements an AI to play Tic-Tac-Toe optimally using Minimax

Week 1: Knowledge

  • Knights - Solves logic puzzles using propositional logic
  • Minesweeper - AI to play Minesweeper using knowledge-based agents

Week 2: Uncertainty

  • PageRank - Ranks web pages by importance using the PageRank algorithm
  • Heredity - Assesses the likelihood of a person having a genetic trait using Bayesian networks

Week 3: Optimization

  • Crossword - Generates crossword puzzles using constraint satisfaction

Week 4: Learning

  • Shopping - Predicts whether online shopping customers will complete a purchase using k-nearest neighbors
  • Nim - AI that learns to play Nim through reinforcement learning (Q-learning)

Week 5: Neural Networks

  • Traffic - Neural network to identify traffic signs using TensorFlow/Keras

Week 6: Language

  • Parser - Parses sentences and extracts noun phrase chunks
  • Questions - AI to answer questions given a corpus of text using tf-idf and natural language processing

Technologies Used

  • Python
  • scikit-learn
  • TensorFlow/Keras
  • NLTK (Natural Language Toolkit)
  • Tensorflow

Note

This repository contains only my code implementations. Test data and course materials are not included(I don't want to set github servers on fire)


Acknowledgments

Special thanks to Professor David J. Malan, Brian Yu and the rest of the CS50 team at Harvard University for creating this excellent course.