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

.gitignore 742 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
  1. venv/*
  2. *venv*
  3. __pycache__
  4. *.egg-info*
  5. */__pycache__/*
  6. .vscode
  7. *.py.*
  8. *.pkl
  9. *.swp
  10. dist/*
  11. *egg*
  12. *DS_Store
  13. *output*
  14. *experiment*
  15. *exp*
  16. *_build*
  17. *build*
  18. debug.log
  19. vips*
  20. testing/data/*
  21. testing/data_output/*
  22. .coverage
  23. testing/config_segmentation_temp.yaml
  24. testing/failures.log
  25. coverage.xml
  26. mlcube/workspace/*
  27. !mlcube/workspace/config.yml
  28. !mlcube/workspace/channelIDs.yml
  29. tutorials/classification_medmnist_notebook/dataset/pathmnist
  30. tutorials/classification_medmnist_notebook/medmnist/dataset/pathmnist
  31. tutorials/classification_medmnist_notebook/output_stats
  32. # Ingnore any ipynbcheckpoints anywhere
  33. **/.ipynb_checkpoints/*
  34. .jupyter_ystore.db
  35. tutorials/classification_medmnist_notebook/model
  36. tutorials/classification_medmnist_notebook/dataset/*.csv
Tip!

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

Comments

Loading...