shreyajn commited on
Commit
ae690d9
·
verified ·
1 Parent(s): c1b684e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -144,9 +144,9 @@ provisioned in the cloud. Once the job is submitted, you can navigate to a
144
  provided job URL to view a variety of on-device performance metrics.
145
  ```python
146
  profile_job = hub.submit_profile_job(
147
- model=target_model,
148
- device=device,
149
- )
150
 
151
  ```
152
 
@@ -157,10 +157,10 @@ on sample input data on the same cloud hosted device.
157
  ```python
158
  input_data = torch_model.sample_inputs()
159
  inference_job = hub.submit_inference_job(
160
- model=target_model,
161
- device=device,
162
- inputs=input_data,
163
- )
164
  on_device_output = inference_job.download_output_data()
165
 
166
  ```
 
144
  provided job URL to view a variety of on-device performance metrics.
145
  ```python
146
  profile_job = hub.submit_profile_job(
147
+ model=target_model,
148
+ device=device,
149
+ )
150
 
151
  ```
152
 
 
157
  ```python
158
  input_data = torch_model.sample_inputs()
159
  inference_job = hub.submit_inference_job(
160
+ model=target_model,
161
+ device=device,
162
+ inputs=input_data,
163
+ )
164
  on_device_output = inference_job.download_output_data()
165
 
166
  ```