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

makefile 383 B

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
  1. all: install update-requirements prepare run
  2. install:
  3. env/bin/pip install -r requirements.txt
  4. update-requirements: install
  5. env/bin/pip freeze > requirements.txt
  6. # data/prepared: data/data.csv
  7. prepare:
  8. python src/prepare.py data/data.csv
  9. # final_model.pkl predictions.csv: data/prepared
  10. run:
  11. python src/star_type_predictions.py data/prepared final_model.pkl predictions.csv
Tip!

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

Comments

Loading...