Nathan Habib
commited on
Commit
•
38b604c
1
Parent(s):
20d8830
checkbox for unkown model type
Browse files
app.py
CHANGED
@@ -318,12 +318,14 @@ with demo:
|
|
318 |
ModelType.FT.to_str(),
|
319 |
ModelType.IFT.to_str(),
|
320 |
ModelType.RL.to_str(),
|
|
|
321 |
],
|
322 |
value=[
|
323 |
ModelType.PT.to_str(),
|
324 |
ModelType.FT.to_str(),
|
325 |
ModelType.IFT.to_str(),
|
326 |
ModelType.RL.to_str(),
|
|
|
327 |
],
|
328 |
interactive=True,
|
329 |
elem_id="filter-columns-type",
|
|
|
318 |
ModelType.FT.to_str(),
|
319 |
ModelType.IFT.to_str(),
|
320 |
ModelType.RL.to_str(),
|
321 |
+
ModelType.Unknown.to_str(),
|
322 |
],
|
323 |
value=[
|
324 |
ModelType.PT.to_str(),
|
325 |
ModelType.FT.to_str(),
|
326 |
ModelType.IFT.to_str(),
|
327 |
ModelType.RL.to_str(),
|
328 |
+
ModelType.Unknown.to_str(),
|
329 |
],
|
330 |
interactive=True,
|
331 |
elem_id="filter-columns-type",
|