Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

file_plan.txt 1.9 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  1. ├── LICENSE
  2. │ `make clean`
  3. ├── README.md <- The top-level README for developers using this
  4. │ project.
  5. ├── data
  6. │ ├── processed <- The final, canonical data sets for modeling.
  7. │ └── raw <- The original, immutable data dump.
  8. ├── models <- Trained and serialized models, model predictions,
  9. │ or model summaries
  10. ├── notebooks <- Jupyter notebooks
  11. ├── references <- Data dictionaries, manuals, and all other
  12. │ explanatory materials.
  13. ├── reports <- Generated analysis as HTML, PDF, LaTeX, etc.
  14. │ └── figures <- Generated graphics and figures to be used in reporting
  15. │ └── metrics.txt <- Relevant metrics after evaluating the model.
  16. │ └── training_metrics.txt <- Relevant metrics from training the model.
  17. ├── requirements.txt <- The requirements file for reproducing the analysis
  18. │ environment, e.g. generated with `pip freeze >
  19. │ requirements.txt`
  20. ├── src <- Source code for use in this project.
  21. │ ├── __init__.py <- Makes src a Python module
  22. │ │
  23. │ ├── data <- Scripts to download or generate data
  24. │ │ └── make_dataset.py
  25. │ │
  26. │ ├── models <- Scripts to train models and then use trained models
  27. │ │ │ to make predictions
  28. │ │ ├── predict_model.py
  29. │ │ └── train_model.py
  30. │ │
  31. │ └── visualization <- Scripts to create exploratory and results oriented
  32. │ │ visualizations
  33. │ └── visualize.py
  34. ├── testing <- test and troubleshooting logs
  35. └── logging.log
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...