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 +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,10 @@ task downloadLiteModel {
44 def downloadFiles = [
55 " https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-vocab.json" : " gpt2-vocab.json" ,
66 " https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-merges.txt" : " gpt2-merges.txt" ,
7- " https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-fp16-64.tflite" : " model.tflite" ,
8- // "https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-64.tflite": "model.tflite",
9- // "https://s3.amazonaws.com/models.huggingface.co/bert/distilgpt2-64.tflite": "model.tflite",
7+ " https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-64-fp16.tflite" : " model.tflite" , // FP16 quantization version
8+ // "https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-64-8bits.tflite": "model.tflite", // 8-bit integers version
9+ // "https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-64.tflite": "model.tflite", // "raw" version
10+ // "https://s3.amazonaws.com/models.huggingface.co/bert/distilgpt2-64.tflite": "model.tflite", // Distilled version
1011 ]
1112 downloadFiles. each { key , value ->
1213 download {
You can’t perform that action at this time.
0 commit comments