Spaces:
Sleeping
Sleeping
Commit
·
85690e2
1
Parent(s):
fda141d
commented out the tcr task as the model is not aviable
Browse files
app.py
CHANGED
@@ -18,8 +18,9 @@ all_models = ModelRegistry()
|
|
18 |
|
19 |
ppi_task = all_tasks.register_task(PpiTask(model_dict=all_models))
|
20 |
tdi_task = all_tasks.register_task(DtiTask(model_dict=all_models))
|
21 |
-
tcr_task = all_tasks.register_task(TcrTask(model_dict=all_models))
|
22 |
ps_task = all_tasks.register_task(PsTask(model_dict=all_models))
|
|
|
|
|
23 |
|
24 |
# create the model holders. hold the model and the tokenizer, lazy download
|
25 |
# note that the list of relevent tasks needs to be stated.
|
|
|
18 |
|
19 |
ppi_task = all_tasks.register_task(PpiTask(model_dict=all_models))
|
20 |
tdi_task = all_tasks.register_task(DtiTask(model_dict=all_models))
|
|
|
21 |
ps_task = all_tasks.register_task(PsTask(model_dict=all_models))
|
22 |
+
# tcr_task = all_tasks.register_task(TcrTask(model_dict=all_models))
|
23 |
+
tcr_task = "not ready yet"
|
24 |
|
25 |
# create the model holders. hold the model and the tokenizer, lazy download
|
26 |
# note that the list of relevent tasks needs to be stated.
|