This repository was archived by the owner on Jan 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,8 @@ To choose which model to use in the app:
5858* Remove/rename the current ` model.tflite ` file in ` src/main/assets `
5959* Comment/uncomment the model to download in the ` download.gradle ` config file:
6060``` java
61- " https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-fp16-64.tflite" : " model.tflite" , // <- fp16 quantized version of gpt-2 (small) (default)
62- // "https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-64.tflite": "model.tflite", // <- "original" gpt-2 (small)
61+ " https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-64-fp16.tflite" : " model.tflite" , // <- fp16 quantized gpt-2 (small) (default)
62+ // "https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-64-8bits.tflite": "model.tflite", // <- 8-bit integers quantized gpt-2 (small)
63+ // "https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-64.tflite": "model.tflite", // <- "original" gpt-2 (small)
6364// "https://s3.amazonaws.com/models.huggingface.co/bert/distilgpt2-64.tflite": "model.tflite", // <- distilled version of gpt-2 (small)
6465```
You can’t perform that action at this time.
0 commit comments