Margerie commited on
Commit
8b386b6
·
verified ·
1 Parent(s): 48ec8e5

Delete pages/2_📜_Model_Details.py

Browse files
Files changed (1) hide show
  1. pages/2_📜_Model_Details.py +0 -87
pages/2_📜_Model_Details.py DELETED
@@ -1,87 +0,0 @@
1
- import streamlit as st
2
- from persist import persist, load_widget_state
3
- #from middleMan import get_card,writingPrompt,apply_view
4
- import pandas as pd
5
- import requests
6
-
7
- #from specific_extraction import extract_it
8
-
9
-
10
- global variable_output
11
-
12
- @st.cache
13
- def get_cached_data():
14
- languages_df = pd.read_html("https://hf.co/languages")[0]
15
- languages_map = pd.Series(languages_df["Language"].values, index=languages_df["ISO code"]).to_dict()
16
-
17
- license_df = pd.read_html("https://huggingface.co/docs/hub/repositories-licenses")[0]
18
- license_map = pd.Series(
19
- license_df["License identifier (to use in model card)"].values, index=license_df.Fullname
20
- ).to_dict()
21
-
22
- available_metrics = [x['id'] for x in requests.get('https://huggingface.co/api/metrics').json()]
23
-
24
- r = requests.get('https://huggingface.co/api/models-tags-by-type')
25
- tags_data = r.json()
26
- libraries = [x['id'] for x in tags_data['library']]
27
- tasks = [x['id'] for x in tags_data['pipeline_tag']]
28
- #return languages_map, license_map, available_metrics, libraries, tasks
29
- return license_map
30
-
31
-
32
- def cs_body():
33
- license_map= get_cached_data()
34
- Supervision_learning_method_list = ["Unsupervised","Semi-supervised","Self-supervised","Supervised","Reinforcement Learning"]
35
- Machine_Learning_Type_list = ["Neural Network","SVM","Decision Trees"]
36
- Modality_List = ["Computer Vision","Natural Language Processing","Audio","Speech","Multimodal","Tabular"]
37
-
38
- #st.set_page_config(layout="wide") ## not yet supported on the hub
39
- st.markdown('## Model Details')
40
- st.markdown('### Model Description')
41
- st.text_area("Provide a 1-2 sentence summary of what this model is.", help="The model description provides basic details about the model. This includes the architecture, version, if it was introduced in a paper, if an original implementation is available, the author, and general information about the model. Any copyright should be attributed here. General information about training procedures, parameters, and important disclaimers can also be mentioned in this section.", key=persist('model_description'))
42
-
43
- left, right = st.columns([4,6])
44
- sub_col1, sub_col2, sub_col3 = st.columns(3)
45
- with st.container():
46
- with left:
47
- st.write("\n")
48
- st.write("\n")
49
- st.markdown('### Developed By:')
50
- st.write("\n")
51
- st.write("\n")
52
- st.write("\n")
53
- st.markdown('### Shared By [optional]:')
54
- st.write("\n")
55
- st.write("\n")
56
- st.write("\n")
57
- st.markdown('### License:')
58
- st.write("\n")
59
-
60
- st.markdown('### Model Type:')
61
-
62
- with right:
63
- st.text_input("",help="List the people who built the model.", key=persist("Model_developers"))
64
- st.write("\n")
65
- st.text_input("",help="List the people/organization making the model available online.",key=persist("Shared_by"))
66
- st.write("\n")
67
- st.selectbox("",[""] + list(license_map.values()), help="The license associated with this model.", key=persist("license"))
68
-
69
- with st.container():
70
-
71
- with sub_col1:
72
- st.multiselect(" Supervision/Learning Method", [""]+ Supervision_learning_method_list, key=persist("Supervision_learning_method"))
73
- with sub_col2:
74
- st.multiselect("Machine Learning Type",[""]+Machine_Learning_Type_list, key=persist("Machine_Learning_Type"))
75
- with sub_col3:
76
- st.multiselect("Modality",[""]+Modality_List, key=persist("Modality"))
77
-
78
-
79
- def main():
80
- cs_body()
81
-
82
-
83
-
84
-
85
- if __name__ == '__main__':
86
- load_widget_state()
87
- main()