Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 1.35 KB

File metadata and controls

63 lines (44 loc) · 1.35 KB

Git Basic Command Lines

Git comment you may find useful

$ git pull https://github.com/changsu/CS229.git

Update your code base to the latest version

If have confilictions after pull, solve it, modify some file....

$ git add .

Prepare content staged for the next commit (DO NOT forget this cmd before you commit).

$ git commit -m "some note for you commit"

Store current contents in a new commit with a log message. (PLEASE put meaningful and concise comments inside double quotes).

$ git push https://github.com/changsu/CS229.git

Update remote references, where you local commit will be pushed into codebase and visible to other collaboraters.

When you succeed in pushing the code, you should see something like this

To https://github.com/changsu/CS229.git
   e144bb6..7958840  master -> master

Done!!

Environment Set Up

Refer to README in each foler for details about setting up environment

File Structure

Data/

  1. Seed data from the web
  2. Training data corpus(should be non-finance) for generate labels

ML_models/

Algorirthm Implementation for ML

UI_tool/

Code related to UI

NLP/

Natural Language Processing Code:

  1. Stanford Parser that transform sentence into tree structures
  2. Code used for extracting features

Database Information

Added in the future