forked from Project-AgML/AgML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
86 lines (74 loc) · 1.08 KB
/
Copy path.gitignore
File metadata and controls
86 lines (74 loc) · 1.08 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
*.egg
.eggs/
MANIFEST
# Distribution / packaging
build/
dist/
wheels/
sdist/
# Testing & coverage
.pytest_cache/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
coverage.xml
.hypothesis/
# Environments
.env
.venv
env/
venv/
ENV/
# Type checkers & linters
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
.ruff_cache
# Jupyter
.ipynb_checkpoints
# Benchmarking
**/lightning_logs
experiments/benchmarking/logs
# Data directories (not source code)
/**data*/
*test*.*
!tests/
!tests/*/
!tests/**
**/__pycache__/
# agml/_internal: only specific files are tracked
agml/_internal/*
!agml/_internal/preprocess*.py
!agml/_internal/s3internal.py
!agml/_internal/__init__.py
!agml/_internal/utils.py
# Training outputs
agml/models/training/*.log
agml/models/training/*.err
agml/models/training/*.out
agml/models/training/*.csv
# Project-specific
agml/_helios
agml/helios_config.sh
agml/train
*.pptx
image*.png
.challenges
.paper
# Under development
agml/data/augmentations/
agml/data/exporters/pascal_voc.py
# IDEs & editors
.DS_Store
__MACOSX
.idea/
.vscode/