Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -185,13 +185,13 @@ provisioned in the cloud. Once the job is submitted, you can navigate to a
|
|
185 |
provided job URL to view a variety of on-device performance metrics.
|
186 |
```python
|
187 |
encoder_profile_job = hub.submit_profile_job(
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
decoder_profile_job = hub.submit_profile_job(
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
|
196 |
```
|
197 |
|
|
|
185 |
provided job URL to view a variety of on-device performance metrics.
|
186 |
```python
|
187 |
encoder_profile_job = hub.submit_profile_job(
|
188 |
+
model=encoder_target_model,
|
189 |
+
device=device,
|
190 |
+
)
|
191 |
decoder_profile_job = hub.submit_profile_job(
|
192 |
+
model=decoder_target_model,
|
193 |
+
device=device,
|
194 |
+
)
|
195 |
|
196 |
```
|
197 |
|