Commit
·
c8dd8d2
1
Parent(s):
0a07f8a
add metadata health coverage explanation
Browse files
app.py
CHANGED
@@ -260,7 +260,14 @@ with gr.Blocks() as demo:
|
|
260 |
library_choice.change(
|
261 |
tag_frequency_by_library, [library_choice], df, queue=False
|
262 |
)
|
263 |
-
with gr.Tab("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
metadata_field = gr.Dropdown(choices=metadata_coverage_columns)
|
265 |
plot = gr.Plot()
|
266 |
metadata_field.change(
|
|
|
260 |
library_choice.change(
|
261 |
tag_frequency_by_library, [library_choice], df, queue=False
|
262 |
)
|
263 |
+
with gr.Tab("Metadata coverage by library"):
|
264 |
+
gr.Markdown(
|
265 |
+
"Libraries hosting models on the Hugging Face hub take different approaches to "
|
266 |
+
"metadata i.e. some libraries automatically generate metadata for a model at the end of a "
|
267 |
+
"training run. These libraries may also have different types of users who take differing "
|
268 |
+
"approaches to creating metadata for models they share on the hub. The below chart allows you to "
|
269 |
+
"see which libraries have better coverage for key areas of model metadata. "
|
270 |
+
)
|
271 |
metadata_field = gr.Dropdown(choices=metadata_coverage_columns)
|
272 |
plot = gr.Plot()
|
273 |
metadata_field.change(
|