-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
93 lines (70 loc) · 837 Bytes
/
.gitignore
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
87
88
89
90
91
92
93
# Python cache files
src/mmcontext/__pycache__/
*.pyc
tests/__pycache__/
# Pre-commit cache
.cache/
.pre-commit/
# Log files
*.log
*.log.*
*.log.*
wandb
# anndata files
# only track data files in data/demo
data/*
!data/demo/
# Sphinx build files
docs/_build/
docs/_autosummary/
docs/generated/
#images
*.png
#model weights
*.pth
# random notebooks
hm.ipynb
# output files
outputs/*
out/*
docs/notebooks/*zarr
*.zarr
*.h5ad
#venv
venv*/
docs/notebooks/*zarr*
#env variables
.env
#egg-info
*.egg-info
#vs-code
.vscode/
#ds store
.DS_Store
#env keys
*.env
#vscode
.vscode/
#DS Store
*.DS_Store
#package info
*.egg-info/
#env variables
.env
#egg-info
*.egg-info
#vs-code
.vscode/
#ds store
.DS_Store
#local dirs
*checkpoints
*.sqlite*
old_stuff/
#build
build/
#slurm output
*.err
*.out
#trained models
models_trained/