Muennighoff commited on
Commit
7ef1f47
1 Parent(s): 2c251ab

Add Models

Browse files
Files changed (1) hide show
  1. results.py +25 -38
results.py CHANGED
@@ -26,45 +26,32 @@ SKIP_KEYS = ["std", "evaluation_time", "main_score", "threshold"]
26
  MODELS = [
27
  "LASER2",
28
  "LaBSE",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  ]
30
- """
31
- README.md
32
- SGPT-1.3B-weightedmean-msmarco-specb-bitfit
33
- SGPT-125M-weightedmean-msmarco-specb-bitfit
34
- SGPT-125M-weightedmean-msmarco-specb-bitfit-doc
35
- SGPT-125M-weightedmean-msmarco-specb-bitfit-que
36
- SGPT-125M-weightedmean-nli-bitfit
37
- SGPT-2.7B-weightedmean-msmarco-specb-bitfit
38
- SGPT-5.8B-weightedmean-msmarco-specb-bitfit
39
- SGPT-5.8B-weightedmean-msmarco-specb-bitfit-que
40
- SGPT-5.8B-weightedmean-nli-bitfit
41
- all-MiniLM-L12-v2
42
- all-MiniLM-L6-v2
43
- all-mpnet-base-v2
44
- allenai-specter
45
- bert-base-uncased
46
- contriever-base-msmarco
47
- glove.6B.300d
48
- gtr-t5-base
49
- gtr-t5-large
50
- gtr-t5-xl
51
- gtr-t5-xxl
52
- komninos
53
- msmarco-bert-co-condensor
54
- paraphrase-multilingual-MiniLM-L12-v2
55
- paraphrase-multilingual-mpnet-base-v2
56
- results.py
57
- sentence-t5-base
58
- sentence-t5-large
59
- sentence-t5-xl
60
- sentence-t5-xxl
61
- sgpt-bloom-1b3-nli
62
- sgpt-bloom-7b1-msmarco
63
- sgpt-nli-bloom-1b3
64
- sup-simcse-bert-base-uncased
65
- text-similarity-ada-001
66
- unsup-simcse-bert-base-uncased
67
- """
68
 
69
  # Needs to be run whenever new files are added
70
  def get_paths():
 
26
  MODELS = [
27
  "LASER2",
28
  "LaBSE",
29
+ "all-MiniLM-L12-v2",
30
+ "all-MiniLM-L6-v2",
31
+ "all-mpnet-base-v2",
32
+ "allenai-specter",
33
+ "bert-base-uncased",
34
+ "contriever-base-msmarco",
35
+ "glove.6B.300d",
36
+ "gtr-t5-base",
37
+ "gtr-t5-large",
38
+ "gtr-t5-xl",
39
+ "gtr-t5-xxl",
40
+ "komninos",
41
+ "msmarco-bert-co-condensor",
42
+ "paraphrase-multilingual-MiniLM-L12-v2",
43
+ "paraphrase-multilingual-mpnet-base-v2",
44
+ "sentence-t5-base",
45
+ "sentence-t5-large",
46
+ "sentence-t5-xl",
47
+ "sentence-t5-xxl",
48
+ "sgpt-bloom-1b3-nli",
49
+ "sgpt-bloom-7b1-msmarco",
50
+ "sgpt-nli-bloom-1b3",
51
+ "sup-simcse-bert-base-uncased",
52
+ "text-similarity-ada-001",
53
+ "unsup-simcse-bert-base-uncased",
54
  ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
 
56
  # Needs to be run whenever new files are added
57
  def get_paths():