Skip to content
forked from adziorny/CIS419

Assignment homework for CIS419 at UPenn in Fall 2017 and revised not by an UPenn dude

Notifications You must be signed in to change notification settings

vinhbui2430/CIS419

 
 

Repository files navigation

CIS 419/519

This repository contains homework assignment work for CIS419/519 at UPenn in Fall 2017. Each of the folders contain work for the assignments.

The class website for CIS419 is located here: http://www.seas.upenn.edu/~cis519/fall2017/

Google Python Class

As recommended on the CIS419 course webpage, included in the google-python-exercises folder is an unzip of files to work through the Google Python Class. This was useful for learning basic syntax and expressions for Python. There are videos of the class, but they are ~ 1 hour each and it's easier to just read the material.

Assignment 1

Installation

Required software for the first assignment can be found here:

On my Win10 x64 machine the easiest thing to do was install Anaconda, which includes Pythin 2.7 as well as SciPy and Numpy. Then at the Anaconda Prompt (Run as Administrator), I entered the command on the scikit-learn install page:

conda install scikit-learn

I then copied the text of Eric's test code, as follows, at the interpreter:

from sklearn import tree

X = [[0,0], [2,2]]
y = [0.5, 2.5]

clf = tree.DecisionTreeRegressor()
clf = clf.fit(X,y)
clf.predict([[1,1]])

About

Assignment homework for CIS419 at UPenn in Fall 2017 and revised not by an UPenn dude

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 71.5%
  • DIGITAL Command Language 21.2%
  • Python 7.3%