modelrecords / modelrecords

MIT License
0 stars 1 forks source link

Style the model cards and implement a broader set of data points #24

Open sschafft opened 3 months ago

sschafft commented 3 months ago

Do a first pass at styling the PDF. Things to prove:

To do:

wayferer commented 2 months ago
wayferer commented 2 months ago

@jlebensold should the properties for each section be hard coded in the template as they will be a fixed set or would it be better to loop through them in case they change in the future?

Section being Model Details / Intended Use etc Properties being refs / tco2e etc

jlebensold commented 2 months ago

I think we can assume that the properties of the plane card will be fixed for now. The template doesn't need to be that smart. However if iterating over "other details" or something of the sort makes sense, then we can do that. We will need a way to show all the binary facts about the model somewhere, but I would say that this isn't immediately critical and probably is the most likely part of the spec to change. Focus on the model details / model card sections for now.

wayferer commented 2 months ago

Thanks Jon. I'm having a few issues rendering out the properties from the YAML like the following. I tried searching for how to do it in Latex but couldn't get it working so that it would render each as an "item":

intended_use:
    - Llama 2 is intended for commercial and research use in English.
    - Tuned models are intended for assistant-like chat.
    - Pretrained models can be adapted for a variety of natural language generation
      tasks.
    - Developers may fine-tune Llama 2 models for languages beyond English provided
      they comply with the Llama 2 Community License and the Acceptable Use Policy.
    - Use in any manner that violates applicable laws or regulations is out-of-scope.

i.e.

I tried forloops and forcsvlist but couldn't quite get there

wayferer commented 1 month ago

Todo