Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion advanced/clip-interrogator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ lep photon run -n clip-interrogator -m photon.py --local
Similar to other examples, you can run services on Lepton Cloud Platform easily, e.g.:

```shell
lep photon run -n clip-interrogator -m photon.py --resource-shape gpu.t4
lep photon run -n clip-interrogator -m photon.py --resource-shape gpu.a10
```

You can visit [dashboard.lepton.ai](https://dashboard.lepton.ai/) to try out the model.
Expand Down
2 changes: 1 addition & 1 deletion advanced/open-clip/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ c.embed_image(url='https://i.natgeofe.com/n/548467d8-c5f1-4551-9f58-6817a8d2c45e
```bash
lep login # logs into the lepton cloud
lep photon push -n clip # pushes the photon to the cloud
lep photon run -n clip --resource-shape gpu.t4 # run it
lep photon run -n clip --resource-shape gpu.a10 # run it
```

```python
Expand Down
2 changes: 1 addition & 1 deletion advanced/tts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Note that if you have a GPU, things will run much faster. When the program runs,
Similar to other examples, you can run tts with the following command:

```shell
lep photon run -n tts -m tts_main.py --resource-shape gpu.t4
lep photon run -n tts -m tts_main.py --resource-shape gpu.a10
```

And visit [dashboard.lepton.ai](https://dashboard.lepton.ai/) to try out the model.
Expand Down
2 changes: 1 addition & 1 deletion advanced/tts/tts.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@
}
],
"source": [
"!lep photon run -n tts -m tts_main.py --deployment-name tts --resource-shape gpu.t4"
"!lep photon run -n tts -m tts_main.py --deployment-name tts --resource-shape gpu.a10"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion advanced/whisperx/audio_analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"!lep photon create -n whisperx -m main.py\n",
"!lep photon push -n whisperx\n",
"!lep secret create -n HUGGING_FACE_HUB_TOKEN -v hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n",
"!lep photon run -n whisperx -dn whisperx --resource-shape gpu.t4 --secret HUGGING_FACE_HUB_TOKEN"
"!lep photon run -n whisperx -dn whisperx --resource-shape gpu.a10 --secret HUGGING_FACE_HUB_TOKEN"
]
},
{
Expand Down
Loading