Spaces:
Sleeping
Sleeping
Made Bio2Vec Default (#16)
Browse files- Made Bio2Vec Default (98cde8681a638650c2087eadc8b1f0f4200bce60)
Co-authored-by: H Wilks <[email protected]>
app.py
CHANGED
|
@@ -33,6 +33,11 @@ def load_pipeline_from_hub(filename):
|
|
| 33 |
#return load(local_path)
|
| 34 |
|
| 35 |
PIPELINES = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
{
|
| 37 |
'id': 1,
|
| 38 |
'name': 'Baseline',
|
|
@@ -68,11 +73,7 @@ PIPELINES = [
|
|
| 68 |
'name': 'Embedded using GloVe',
|
| 69 |
'filename': "pipeline_ex3_s3.joblib"
|
| 70 |
},
|
| 71 |
-
|
| 72 |
-
'id': 8,
|
| 73 |
-
'name': 'Embedded using Bio2Vec',
|
| 74 |
-
'filename': "pipeline_ex3_s4.joblib"
|
| 75 |
-
},
|
| 76 |
|
| 77 |
]
|
| 78 |
|
|
|
|
| 33 |
#return load(local_path)
|
| 34 |
|
| 35 |
PIPELINES = [
|
| 36 |
+
{
|
| 37 |
+
'id': 8,
|
| 38 |
+
'name': 'Embedded using Bio2Vec',
|
| 39 |
+
'filename': "pipeline_ex3_s4.joblib"
|
| 40 |
+
},
|
| 41 |
{
|
| 42 |
'id': 1,
|
| 43 |
'name': 'Baseline',
|
|
|
|
| 73 |
'name': 'Embedded using GloVe',
|
| 74 |
'filename': "pipeline_ex3_s3.joblib"
|
| 75 |
},
|
| 76 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
|
| 78 |
]
|
| 79 |
|