shreyajn commited on
Commit
92110d3
·
verified ·
1 Parent(s): 4bbd99d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -138,9 +138,9 @@ provisioned in the cloud. Once the job is submitted, you can navigate to a
138
  provided job URL to view a variety of on-device performance metrics.
139
  ```python
140
  profile_job = hub.submit_profile_job(
141
- model=target_model,
142
- device=device,
143
- )
144
 
145
  ```
146
 
@@ -151,10 +151,10 @@ on sample input data on the same cloud hosted device.
151
  ```python
152
  input_data = torch_model.sample_inputs()
153
  inference_job = hub.submit_inference_job(
154
- model=target_model,
155
- device=device,
156
- inputs=input_data,
157
- )
158
  on_device_output = inference_job.download_output_data()
159
 
160
  ```
 
138
  provided job URL to view a variety of on-device performance metrics.
139
  ```python
140
  profile_job = hub.submit_profile_job(
141
+ model=target_model,
142
+ device=device,
143
+ )
144
 
145
  ```
146
 
 
151
  ```python
152
  input_data = torch_model.sample_inputs()
153
  inference_job = hub.submit_inference_job(
154
+ model=target_model,
155
+ device=device,
156
+ inputs=input_data,
157
+ )
158
  on_device_output = inference_job.download_output_data()
159
 
160
  ```