Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit 702f9ab

Browse files
committed
update models in readme
1 parent cce4257 commit 702f9ab

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

gpt2/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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
```

0 commit comments

Comments
 (0)