Skip to content
This repository has been archived by the owner on May 20, 2020. It is now read-only.

Latest commit

 

History

History
51 lines (36 loc) · 711 Bytes

README.md

File metadata and controls

51 lines (36 loc) · 711 Bytes

cs482-fall2018

Project Code For cs482/682 Fall 2018 @ UNR

project 0

Create a tic-tac-toe move-maker program. I've given you some skeleton file I/O code that you can use and the spec for some functions that you have to fill in. Make those functions work, and you should get an 'A'

to compile

Using CMake

mkdir build && cd build
cmake ..
make

Project 1

Naive Bayes spam filtering

to compile

using CMake

mkdir build && cd build
cmake ..
make

project2

Kalman Filter, Hopper the hallway Robot

to run

sudo chmod +x sim.py
./sim.py

project 3

Q learning and Reinforcement Learning

to run

sudo chmod +x cart.py
sudo chmod +x car.py
./cart.py
./car.py