echarlaix HF staff commited on
Commit
fdbb577
1 Parent(s): 097130c

update description

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -174,11 +174,11 @@ def export(model_id: str, private_repo: bool, overwritte: bool, oauth_token: gr.
174
  return f"### Error: {e}"
175
 
176
  DESCRIPTION = """
177
- This Space uses [Optimum Intel](https://huggingface.co/docs/optimum/main/en/intel/openvino/export) to automatically export a model from the Hub to the [OpenVINO format](https://docs.openvino.ai/2024/documentation/openvino-ir-format.html).
178
 
179
  The resulting model will then be pushed under your HF user namespace.
180
 
181
- The list of the supported architectures can be found in the [documentation](https://huggingface.co/docs/optimum/main/en/intel/openvino/models)
182
  """
183
 
184
  model_id = HuggingfaceHubSearch(
@@ -194,7 +194,7 @@ private_repo = gr.Checkbox(
194
  overwritte = gr.Checkbox(
195
  value=False,
196
  label="Overwrite repo content",
197
- info="Push files on existing repo potentially overwriting existing files",
198
  )
199
  interface = gr.Interface(
200
  fn=export,
 
174
  return f"### Error: {e}"
175
 
176
  DESCRIPTION = """
177
+ This Space uses [Optimum Intel](https://huggingface.co/docs/optimum/main/en/intel/openvino/export) to automatically export a model from the Hub to the [OpenVINO IR format](https://docs.openvino.ai/2024/documentation/openvino-ir-format.html).
178
 
179
  The resulting model will then be pushed under your HF user namespace.
180
 
181
+ The list of supported architectures can be found in the [optimum documentation](https://huggingface.co/docs/optimum/main/en/intel/openvino/models).
182
  """
183
 
184
  model_id = HuggingfaceHubSearch(
 
194
  overwritte = gr.Checkbox(
195
  value=False,
196
  label="Overwrite repo content",
197
+ info="Enable pushing files on existing repo, potentially overwriting existing files",
198
  )
199
  interface = gr.Interface(
200
  fn=export,