shreyajn commited on
Commit
f347e14
·
verified ·
1 Parent(s): d99fb53

Upload README.md with huggingface_hub

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