|
a |
|
b/.gitignore |
|
|
1 |
# Jupyter NB checkpoints |
|
|
2 |
.ipynb_checkpoints |
|
|
3 |
|
|
|
4 |
# Python compiled bytecode |
|
|
5 |
__pycache__/ |
|
|
6 |
*.py[cod] |
|
|
7 |
|
|
|
8 |
# NumPy/PyTorch binary files |
|
|
9 |
*.npy |
|
|
10 |
*.pt |
|
|
11 |
|
|
|
12 |
# Distribution and packaging files |
|
|
13 |
build/ |
|
|
14 |
develop-eggs/ |
|
|
15 |
dist/ |
|
|
16 |
downloads/ |
|
|
17 |
eggs/ |
|
|
18 |
.eggs/ |
|
|
19 |
lib/ |
|
|
20 |
lib64/ |
|
|
21 |
parts/ |
|
|
22 |
sdist/ |
|
|
23 |
var/ |
|
|
24 |
wheels/ |
|
|
25 |
*.egg |
|
|
26 |
*.egg-info/ |
|
|
27 |
.installed.cfg |
|
|
28 |
MANIFEST |
|
|
29 |
|
|
|
30 |
# Logs |
|
|
31 |
outputs/ |
|
|
32 |
*.log |
|
|
33 |
|
|
|
34 |
# Tutorial files |
|
|
35 |
tutorial/* |
|
|
36 |
!tutorial/config/*maize*.yaml |
|
|
37 |
!tutorial/config/*random_small*.yaml |
|
|
38 |
!tutorial/data |
|
|
39 |
!tutorial/maize/maize_dataset.py |
|
|
40 |
!tutorial/notebooks/*.ipynb |
|
|
41 |
!tutorial/README.md |
|
|
42 |
|
|
|
43 |
# Supplementary files |
|
|
44 |
supplementary_files/*.png |
|
|
45 |
supplementary_files/*.tsv |
|
|
46 |
supplementary_files/*.txt |
|
|
47 |
|
|
|
48 |
# Virtual environment |
|
|
49 |
venv/ |
|
|
50 |
virtualvenv/ |
|
|
51 |
|
|
|
52 |
# docs files |
|
|
53 |
docs/build/ |
|
|
54 |
docs/source/_templates/ |
|
|
55 |
|
|
|
56 |
# VS Code settings |
|
|
57 |
.vscode |
|
|
58 |
|
|
|
59 |
# macOS |
|
|
60 |
.DS_Store |
|
|
61 |
|
|
|
62 |
# Root folder |
|
|
63 |
/*.* |
|
|
64 |
!/.gitignore |
|
|
65 |
!/.readthedocs.yaml |
|
|
66 |
!/LICENSE |
|
|
67 |
!/MANIFEST.in |
|
|
68 |
!/README.md |
|
|
69 |
!/pyproject.toml |
|
|
70 |
!/requirements.txt |
|
|
71 |
!/setup.cfg |
|
|
72 |
!/.github |