Improve wording
Browse files
README.md
CHANGED
@@ -6,7 +6,7 @@ colorTo: yellow
|
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.40.1
|
8 |
app_file: app.py
|
9 |
-
pinned:
|
10 |
license: apache-2.0
|
11 |
header: mini
|
12 |
short_description: Convert a Hugging Face model to ONNX format
|
@@ -21,8 +21,6 @@ This project provides a Streamlit application that converts Hugging Face models
|
|
21 |
## Features
|
22 |
|
23 |
- **One-Click Model Conversion**: Convert Hugging Face models to ONNX format with minimal configuration
|
24 |
-
- **Automatic Repository Management**: Seamless handling of required dependencies
|
25 |
-
- **Comprehensive Error Handling**: Clear feedback throughout the conversion process
|
26 |
- **User-Friendly Interface**: Intuitive Streamlit-based web interface
|
27 |
- **Quantization Support**: Automatic model quantization for reduced size and faster inference
|
28 |
|
|
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.40.1
|
8 |
app_file: app.py
|
9 |
+
pinned: false
|
10 |
license: apache-2.0
|
11 |
header: mini
|
12 |
short_description: Convert a Hugging Face model to ONNX format
|
|
|
21 |
## Features
|
22 |
|
23 |
- **One-Click Model Conversion**: Convert Hugging Face models to ONNX format with minimal configuration
|
|
|
|
|
24 |
- **User-Friendly Interface**: Intuitive Streamlit-based web interface
|
25 |
- **Quantization Support**: Automatic model quantization for reduced size and faster inference
|
26 |
|
app.py
CHANGED
@@ -186,7 +186,7 @@ def main():
|
|
186 |
st.link_button(f"Go to {output_model_id}", output_model_url, type="primary")
|
187 |
return
|
188 |
|
189 |
-
st.write(f"
|
190 |
st.code(output_model_url, language="plaintext")
|
191 |
|
192 |
if not st.button(label="Proceed", type="primary"):
|
|
|
186 |
st.link_button(f"Go to {output_model_id}", output_model_url, type="primary")
|
187 |
return
|
188 |
|
189 |
+
st.write(f"URL where the model will be converted and uploaded to:")
|
190 |
st.code(output_model_url, language="plaintext")
|
191 |
|
192 |
if not st.button(label="Proceed", type="primary"):
|