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 569 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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  1. .PHONY: notebook
  2. .EXPORT_ALL_VARIABLES:
  3. PREFECT__FLOWS__CHECKPOINTING = true
  4. install:
  5. @echo "Installing..."
  6. poetry install
  7. activate:
  8. @echo "Activating virtual environment"
  9. poetry shell
  10. pull_data:
  11. @echo "Pulling data..."
  12. poetry run dvc pull -r origin
  13. setup: activate
  14. install_all: install pull_data
  15. test:
  16. pytest
  17. clean:
  18. @echo "Deleting log files..."
  19. find . -name "*.log" -type f -not -path "./wandb/*" -delete
  20. dvc_add:
  21. dvc add data model image metrics.csv
  22. dvc_push:
  23. dvc push -r origin
  24. git_add:
  25. git add .
  26. git status
  27. add: dvc_add dvc_push git_add
Tip!

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

Comments

Loading...