jebasania commited on
Commit
a2ded75
·
verified ·
1 Parent(s): d9680dc

Update app.py

Browse files

Added 3 additional attributes (model tag, knowledge cutoff date, model type) to the example model

Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -427,9 +427,12 @@ class AIEvaluationForm:
427
  """Load example data for StarCoder2-like system"""
428
  example_data = [
429
  "StarCoder2", # name
430
- "BigCode", # provider
 
 
431
  "https://huggingface.co/bigcode/starcoder2-15b", # url
432
- "Generative Model", # type
 
433
  ["Text"], # input modalities
434
  ["Text"], # output modalities
435
  ]
 
427
  """Load example data for StarCoder2-like system"""
428
  example_data = [
429
  "StarCoder2", # name
430
+ "BigCode", # provider
431
+ "starcoder2-15b", #model tag
432
+ "09-14-2023", #knowledge cutoff date
433
  "https://huggingface.co/bigcode/starcoder2-15b", # url
434
+ "Generative Model", # system type
435
+ ["Foundational"], # model type
436
  ["Text"], # input modalities
437
  ["Text"], # output modalities
438
  ]