dolremi / Titanic-kaggle

Titanic project for Kaggle
0 stars 1 forks source link

restructure reusable sources into package format #5

Closed jmzhao closed 8 years ago

jmzhao commented 8 years ago

Proposed structure could be like

./
|- titanic/ # all reuseable sources as a package
  |- __init__.py
  |- data/ # modules about data parsing and processing
    |- __init__.py
    |- Dataset.py 
    ...
  |- nn/ # modules about NN
    |- __init__.py
    |- model.py
    ...
|- data/ # dataset and processed data
  |- original/
    |- xxx.csv
    ...
|- visualize
  |- xxx.ipynb
|- README.md
...
dolremi commented 8 years ago

Files have been reconstructed.