Add instructions
Browse files- src/app.py +6 -1
src/app.py
CHANGED
@@ -106,7 +106,12 @@ gpu_specs = get_gpu_specs()
|
|
106 |
model_list_info = cache_model_list()
|
107 |
|
108 |
_, col, _ = st.columns([1,3,1])
|
109 |
-
with col.expander("
|
|
|
|
|
|
|
|
|
|
|
110 |
st.markdown("""- GPU information comes from [TechPowerUp GPU Specs](https://www.techpowerup.com/gpu-specs/)
|
111 |
- Mainly based on [Model Memory Calculator by hf-accelerate](https://huggingface.co/spaces/hf-accelerate/model-memory-usage)
|
112 |
using `transformers` library
|
|
|
106 |
model_list_info = cache_model_list()
|
107 |
|
108 |
_, col, _ = st.columns([1,3,1])
|
109 |
+
with col.expander("Info", expanded=True):
|
110 |
+
st.markdown("""- Model can be selected from the drop-down at the right, press "enter" after selecting to refresh.
|
111 |
+
- Results are broken down by precision, this can be seen in the graph and the chart below.""")
|
112 |
+
|
113 |
+
_, col, _ = st.columns([1,3,1])
|
114 |
+
with col.expander("Detailed Information", expanded=False):
|
115 |
st.markdown("""- GPU information comes from [TechPowerUp GPU Specs](https://www.techpowerup.com/gpu-specs/)
|
116 |
- Mainly based on [Model Memory Calculator by hf-accelerate](https://huggingface.co/spaces/hf-accelerate/model-memory-usage)
|
117 |
using `transformers` library
|