Spaces:
Runtime error
Runtime error
fix: remove comma-delimited joining of characters on model_card_authors and model_card_contact
#4
by
acatovic
- opened
In this PR we remove join(', ')
for both the model_card_authors
and model_card_contact
in language_model_template1.md
. What the join does is for e.g. an author name Jane Doe
, displays it as J, a, n, e, , D, o, e
, which is clearly not what we want. Technically instead of a join there should be a split(',')
but it's probably an overkill and enough to just display names and contacts as-is.
meg
changed pull request status to
merged
Thanks for this!