You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
make sure we get details from users when they're filing issues (pytorch#950)
* make sure we get details from users when they're filing issues
* Update README.md
Co-authored-by: Jack-Khuu <[email protected]>
---------
Co-authored-by: Jack-Khuu <[email protected]>
@@ -371,7 +371,7 @@ The following assumes you've completed the steps for [Setting up ExecuTorch](#se
371
371
adb push <tokenizer.model or tokenizer.bin> /data/local/tmp/llama
372
372
```
373
373
374
-
4. Use Android Studio to open the torchchat app skeleton, located at `android/Torchchat`.
374
+
4. Use Android Studio to open the torchchat app skeleton, located at `android/Torchchat`.
375
375
376
376
5. Click the Play button (^R) to launch it to emulator/device.
377
377
@@ -382,13 +382,13 @@ The following assumes you've completed the steps for [Setting up ExecuTorch](#se
382
382
383
383
<img src="https://pytorch.org/executorch/main/_static/img/android_llama_app.png" width="600" alt="Android app running a LlaMA model">
384
384
385
-
**Note:** The AAR file listed above comes with tiktoken tokenizer, which is used for llama3 model. If you want to use a model with BPE tokenizer (llama2 model for example),
386
-
use this AAR
385
+
**Note:** The AAR file listed above comes with tiktoken tokenizer, which is used for llama3 model. If you want to use a model with BPE tokenizer (llama2 model for example),
* Since the tokenizer is built at compile time, to use a different tokenizer you need to re-build the app.
390
390
391
-
If you need to tweak or use your own tokenizer and runtime, modify the ExecuTorch code and use [this script](https://github.com/pytorch/executorch/blob/main/build/build_android_llm_demo.sh) to build the AAR library.
391
+
If you need to tweak or use your own tokenizer and runtime, modify the ExecuTorch code and use [this script](https://github.com/pytorch/executorch/blob/main/build/build_android_llm_demo.sh) to build the AAR library.
392
392
393
393
394
394
</details>
@@ -488,7 +488,6 @@ We really value our community and the contributions made by our wonderful users.
488
488
489
489
## Troubleshooting
490
490
491
-
492
491
**CERTIFICATE_VERIFY_FAILED**
493
492
Run `pip install --upgrade certifi`.
494
493
@@ -500,6 +499,13 @@ link provided in the error to get access.
500
499
**Installing ET Fails**
501
500
If `./scripts/install_et.sh` fails with an error like `Building wheel for executorch (pyproject.toml) did not run successfully` It's possible that it's linking to an older version of pytorch installed some other way like via homebrew. You can break the link by uninstalling other versions such as `brew uninstall pytorch` Note: You may break something that depends on this, so be aware.
502
501
502
+
## Filing Issues
503
+
Please include the exact command you ran and the output of that command.
504
+
Also, run this script and include the output saved to `system_info.txt` so that we can better debug your issue.
0 commit comments