Alvinn-aai commited on
Commit
a44350f
·
1 Parent(s): 5604365

gitignore, env instructions in readme

Browse files
Files changed (2) hide show
  1. .gitignore +3 -0
  2. README.md +13 -1
.gitignore CHANGED
@@ -5,9 +5,12 @@ __pycache__/
5
  .ipynb_checkpoints
6
  *ipynb
7
  .vscode/
 
8
 
9
  eval-queue/
10
  eval-results/
11
  eval-queue-bk/
12
  eval-results-bk/
13
  logs/
 
 
 
5
  .ipynb_checkpoints
6
  *ipynb
7
  .vscode/
8
+ /.idea
9
 
10
  eval-queue/
11
  eval-results/
12
  eval-queue-bk/
13
  eval-results-bk/
14
  logs/
15
+
16
+ .DS_Store
README.md CHANGED
@@ -43,4 +43,16 @@ If you encounter problem on the space, don't hesitate to restart it to remove th
43
  You'll find
44
  - the main table' columns names and properties in `src/display/utils.py`
45
  - the logic to read all results and request files, then convert them in dataframe lines, in `src/leaderboard/read_evals.py`, and `src/populate.py`
46
- - the logic to allow or filter submissions in `src/submission/submit.py` and `src/submission/check_validity.py`
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  You'll find
44
  - the main table' columns names and properties in `src/display/utils.py`
45
  - the logic to read all results and request files, then convert them in dataframe lines, in `src/leaderboard/read_evals.py`, and `src/populate.py`
46
+ - the logic to allow or filter submissions in `src/submission/submit.py` and `src/submission/check_validity.py`
47
+
48
+
49
+ # Setting up the environment
50
+ If you encounter issues with SentencePiece package, see this thread:
51
+ https://github.com/google/sentencepiece/issues/1083
52
+
53
+ Specifically:
54
+ ```
55
+ brew install cmake pkg-config
56
+ export CMAKE_POLICY_VERSION_MINIMUM=3.5
57
+ pip install sentencepiece --no-cache-dir
58
+ ```