specification icon indicating copy to clipboard operation
specification copied to clipboard

Add field for `Components.modelCard.baseModel`

Open bardenstein opened this issue 2 years ago • 1 comments

Proposal Base (aka foundation) models are one of the most important pieces of information to know about a given model, according to our research with dozens of AI/ML practitioners. Knowing whether a model is based on Llama2 or Stable-DIffusion or an unknown model that is worth investigating further before determining whether one can trust the current model.

Details FieldName: Components.modelCard.baseModel FieldType: List. Contains sub-fields Name, Version, and Source. Required: Yes

Example snippet

"modelCard" : [
       "baseModel": [
                "name": "Stable-diffusion-base",
                "version": "x1",
                "source": "https://huggingface.co/models/stable-diffusion-base-x1"
        ]
  ]

bardenstein avatar Nov 17 '23 15:11 bardenstein

How does the base model use case differ from the parent model use case as described in #342?

Why would a base model be required?

stevespringett avatar Nov 26 '23 22:11 stevespringett