Skip to content

Commit 31f225c

Browse files
Add license for Llama
Add license for Llama
2 parents c397785 + 8c11b7d commit 31f225c

File tree

1 file changed

+9
-9
lines changed
  • examples/llm_inference/android/app/src/main/java/com/google/mediapipe/examples/llminference

1 file changed

+9
-9
lines changed

examples/llm_inference/android/app/src/main/java/com/google/mediapipe/examples/llminference/Model.kt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ enum class Model(
2929
),
3030
GEMMA_3_1B_IT_GPU(
3131
path = "/data/local/tmp/Gemma3-1B-IT_multi-prefill-seq_q8_ekv2048.task",
32-
url = "https://huggingface.co/litert-community/Gemma3-1B-ITresolve/main/Gemma3-1B-IT_multi-prefill-seq_q8_ekv2048.task",
32+
url = "https://huggingface.co/litert-community/Gemma3-1B-IT/resolve/main/Gemma3-1B-IT_multi-prefill-seq_q8_ekv2048.task",
3333
licenseUrl = "https://huggingface.co/litert-community/Gemma3-1B-IT",
3434
needsAuth = true,
3535
preferredBackend = Backend.GPU,
@@ -62,9 +62,9 @@ enum class Model(
6262
),
6363
LLAMA_3_2_1B_INSTRUCT(
6464
path = "/data/local/tmp/Llama-3.2-1B-Instruct_multi-prefill-seq_q8_ekv1280.task",
65-
url = "https://huggingface.co/litert-community/DeepSeek-R1-Distill-Qwen-1.5B/resolve/main/Llama-3.2-1B-Instruct_multi-prefill-seq_q8_ekv1280.task",
66-
licenseUrl = "",
67-
needsAuth = false,
65+
url = "https://huggingface.co/litert-community/Llama-3.2-1B-Instruct/resolve/main/Llama-3.2-1B-Instruct_multi-prefill-seq_q8_ekv1280.task",
66+
licenseUrl = "https://huggingface.co/litert-community/Llama-3.2-1B-Instruct",
67+
needsAuth = true,
6868
preferredBackend = Backend.CPU,
6969
thinking = false,
7070
temperature = 0.6f,
@@ -74,8 +74,8 @@ enum class Model(
7474
LLAMA_3_2_3B_INSTRUCT(
7575
path = "/data/local/tmp/Llama-3.2-3B-Instruct_multi-prefill-seq_q8_ekv1280.task",
7676
url = "https://huggingface.co/litert-community/Llama-3.2-3B-Instruct/resolve/main/Llama-3.2-3B-Instruct_multi-prefill-seq_q8_ekv1280.task",
77-
licenseUrl = "",
78-
needsAuth = false,
77+
licenseUrl = "https://huggingface.co/litert-community/Llama-3.2-3B-Instruct",
78+
needsAuth = true,
7979
preferredBackend = Backend.CPU,
8080
thinking = false,
8181
temperature = 0.6f,
@@ -106,7 +106,7 @@ enum class Model(
106106
),
107107
QWEN2_1_5B_INSTRUCT(
108108
path = "/data/local/tmp/Qwen2.5-1.5B-Instruct_multi-prefill-seq_q8_ekv1280.task",
109-
url = "https://huggingface.co/litert-communityQwen2.5-1.5B-Instruct/resolve/main/Qwen2.5-1.5B-Instruct_multi-prefill-seq_q8_ekv1280.task",
109+
url = "https://huggingface.co/litert-community/Qwen2.5-1.5B-Instruct/resolve/main/Qwen2.5-1.5B-Instruct_multi-prefill-seq_q8_ekv1280.task",
110110
licenseUrl = "",
111111
needsAuth = false,
112112
preferredBackend = Backend.CPU,
@@ -127,8 +127,8 @@ enum class Model(
127127
topP = 1.0f
128128
),
129129
SMOLLM_135M_INSTRUCT(
130-
path = "/data/local/tmp/SmolLM-135M-Instruct_SmolLM-135M-Instruct_multi-prefill-seq_q8_ekv1280.task",
131-
url = "https://huggingface.co/litert-community/SmolLM-135M-Instruct/resolve/main/SmolLM-135M-Instruct_SmolLM-135M-Instruct_multi-prefill-seq_q8_ekv1280.task",
130+
path = "/data/local/tmp/SmolLM-135M-Instruct_multi-prefill-seq_q8_ekv1280.task",
131+
url = "https://huggingface.co/litert-community/SmolLM-135M-Instruct/resolve/main/SmolLM-135M-Instruct_multi-prefill-seq_q8_ekv1280.task",
132132
licenseUrl = "",
133133
needsAuth = false,
134134
preferredBackend = Backend.CPU,

0 commit comments

Comments
 (0)