DimmingLight commited on
Commit
a287521
·
verified ·
1 Parent(s): ed763d2

Upload .dockerignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .dockerignore +25 -0
.dockerignore ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Keep the image small: exclude research-only bulk. The demo needs app.py, src/,
2
+ # results/demo/*.json, and (separately shipped) models/. Everything below is
3
+ # either huge, regenerate-able, or irrelevant to the running demo.
4
+ .git
5
+ .gitignore
6
+ __pycache__/
7
+ *.pyc
8
+ .ipynb_checkpoints/
9
+ notebooks/
10
+ paper/
11
+ poster/
12
+ data/
13
+ analysis/
14
+ scripts/
15
+ environment*.yml
16
+ requirements.txt
17
+ results/cv/
18
+ results/metrics/
19
+ results/multiseed/
20
+ results/tuning/
21
+ results/plots/
22
+ results/ranking/
23
+ results/report/
24
+ # NOTE: do NOT ignore results/demo/ (Tab 1 needs it) or models/ if you choose
25
+ # the bake-in shipping option.