yonikremer
commited on
Commit
•
af40811
1
Parent(s):
faf3171
added black listed models
Browse files- supported_models.py +8 -1
supported_models.py
CHANGED
@@ -6,7 +6,14 @@ from concurrent.futures import ThreadPoolExecutor, as_completed
|
|
6 |
|
7 |
SUPPORTED_MODEL_NAME_PAGES_FORMAT = "https://huggingface.co/models?pipeline_tag=text-generation&library=pytorch"
|
8 |
MAX_WORKERS = 10
|
9 |
-
BLACKLISTED_MODEL_NAMES = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
MIN_NUMBER_OF_DOWNLOADS = 100
|
11 |
MIN_NUMBER_OF_LIKES = 20
|
12 |
|
|
|
6 |
|
7 |
SUPPORTED_MODEL_NAME_PAGES_FORMAT = "https://huggingface.co/models?pipeline_tag=text-generation&library=pytorch"
|
8 |
MAX_WORKERS = 10
|
9 |
+
BLACKLISTED_MODEL_NAMES = {
|
10 |
+
"ykilcher/gpt-4chan",
|
11 |
+
"bigscience/mt0-xxl",
|
12 |
+
"bigscience/mt0-xl",
|
13 |
+
"bigscience/mt0-large",
|
14 |
+
"bigscience/mt0-base",
|
15 |
+
"bigscience/mt0-small",
|
16 |
+
}
|
17 |
MIN_NUMBER_OF_DOWNLOADS = 100
|
18 |
MIN_NUMBER_OF_LIKES = 20
|
19 |
|