Skip to content

Commit f8e28af

Browse files
committed
Fix image sizes in README.md
1 parent f68a138 commit f8e28af

File tree

1 file changed

+6
-6
lines changed
  • examples/demo-apps/android/LlamaDemo

1 file changed

+6
-6
lines changed

examples/demo-apps/android/LlamaDemo/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Below are the UI features for the app.
4646

4747
Select the settings widget to get started with picking a model, its parameters and any prompts.
4848
<p align="center">
49-
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/opening_the_app_details.png" width=800px>
49+
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/opening_the_app_details.png" style="width:800px">
5050
</p>
5151

5252

@@ -55,7 +55,7 @@ Select the settings widget to get started with picking a model, its parameters a
5555

5656
Once you've selected the model, tokenizer, and model type you are ready to click on "Load Model" to have the app load the model and go back to the main Chat activity.
5757
<p align="center">
58-
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/settings_menu.png" width=300px>
58+
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/settings_menu.png" style="width:300px">
5959
</p>
6060

6161

@@ -86,12 +86,12 @@ int loadResult = mModule.load();
8686
### User Prompt
8787
Once model is successfully loaded then enter any prompt and click the send (i.e. generate) button to send it to the model.
8888
<p align="center">
89-
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/load_complete_and_start_prompt.png" width=300px>
89+
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/load_complete_and_start_prompt.png" style="width:300px">
9090
</p>
9191

9292
You can provide it more follow-up questions as well.
9393
<p align="center">
94-
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/chat.png" width=300px>
94+
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/chat.png" style="width:300px">
9595
</p>
9696

9797
#### ExecuTorch App API
@@ -108,14 +108,14 @@ mModule.generate(prompt,sequence_length, MainActivity.this);
108108
For LLaVA-1.5 implementation, select the exported LLaVA .pte and tokenizer file in the Settings menu and load the model. After this you can send an image from your gallery or take a live picture along with a text prompt to the model.
109109

110110
<p align="center">
111-
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/llava_example.png" width=300px>
111+
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/llava_example.png" style="width:300px">
112112
</p>
113113

114114

115115
### Output Generated
116116
To show completion of the follow-up question, here is the complete detailed response from the model.
117117
<p align="center">
118-
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/chat_response.png" width=300px>
118+
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/chat_response.png" style="width:300px">
119119
</p>
120120

121121
#### ExecuTorch App API

0 commit comments

Comments
 (0)