lambdaofgod commited on
Commit
84c8245
1 Parent(s): fef8635

working model links

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -41,7 +41,8 @@ class ModelFinder:
41
  for (model_name, tag, readme) in selected_models_df_subset[
42
  ["modelId", "pipeline_tag", "readme"]
43
  ].itertuples(index=False):
44
- with st.expander(f"{model_name} ({tag})"):
 
45
  st.write(readme)
46
 
47
  def run(self):
 
41
  for (model_name, tag, readme) in selected_models_df_subset[
42
  ["modelId", "pipeline_tag", "readme"]
43
  ].itertuples(index=False):
44
+ model_url = f"http://huggingface.co/{model_name}"
45
+ with st.expander(f"[{model_name}]({model_url}) ({tag})"):
46
  st.write(readme)
47
 
48
  def run(self):