├── data └── README.md ├── executable └── Modern_NLP_in_Python.ipynb └── intermediate └── README.md /data/README.md: -------------------------------------------------------------------------------- 1 | The _data_ folder should contain any project files related to _original_ source data. This may include: 2 | - Data files, such as .csv and .json 3 | - SQL queries 4 | - Other files related to connecting to data sources 5 | -------------------------------------------------------------------------------- /intermediate/README.md: -------------------------------------------------------------------------------- 1 | The _intermediate_ folder should contain saved Python objects and intermediate 2 | data that are used in the project's modeling pipeline, e.g.: 3 | - MySVM.pkl 4 | - ModelTfidfTransformer.pkl 5 | - transformed_dataset.csv 6 | --------------------------------------------------------------------------------