Spaces:
Running
Running
Yang Gu
commited on
Commit
Β·
13f41c4
1
Parent(s):
79a9351
Unify demo key and filename
Browse files- demo/{ort-sd-turbo β ort-sdturbo}/index.html +0 -0
- demo/{ort-sd-turbo β ort-sdturbo}/models/text_encoder.onnx +0 -0
- demo/{ort-sd-turbo β ort-sdturbo}/models/tokenizer/tokenizer.json +0 -0
- demo/{ort-sd-turbo β ort-sdturbo}/models/tokenizer/tokenizer_config.json +0 -0
- demo/{ort-sd-turbo β ort-sdturbo}/models/unet.onnx +0 -0
- demo/{ort-sd-turbo β ort-sdturbo}/models/vae_decoder.onnx +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/README.md +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/chat.css +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/chat.js +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/index.html +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/resources/bootstrap.bundle.min.js +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/resources/bootstrap.min.css +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/resources/marked.min.js +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/resources/purify.min.js +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/transformers/ort-wasm-simd.jsep.wasm +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/transformers/transformers.js +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/transformers/transformers.js.map +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/transformers/transformers.min.js +0 -0
- demo/{ort-tiny-llama β ort-tinyllama}/transformers/transformers.min.js.map +0 -0
- main.js +7 -7
demo/{ort-sd-turbo β ort-sdturbo}/index.html
RENAMED
File without changes
|
demo/{ort-sd-turbo β ort-sdturbo}/models/text_encoder.onnx
RENAMED
File without changes
|
demo/{ort-sd-turbo β ort-sdturbo}/models/tokenizer/tokenizer.json
RENAMED
File without changes
|
demo/{ort-sd-turbo β ort-sdturbo}/models/tokenizer/tokenizer_config.json
RENAMED
File without changes
|
demo/{ort-sd-turbo β ort-sdturbo}/models/unet.onnx
RENAMED
File without changes
|
demo/{ort-sd-turbo β ort-sdturbo}/models/vae_decoder.onnx
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/README.md
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/chat.css
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/chat.js
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/index.html
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/resources/bootstrap.bundle.min.js
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/resources/bootstrap.min.css
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/resources/marked.min.js
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/resources/purify.min.js
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/transformers/ort-wasm-simd.jsep.wasm
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/transformers/transformers.js
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/transformers/transformers.js.map
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/transformers/transformers.min.js
RENAMED
File without changes
|
demo/{ort-tiny-llama β ort-tinyllama}/transformers/transformers.min.js.map
RENAMED
File without changes
|
main.js
CHANGED
@@ -56,27 +56,27 @@ const pageCategories = [
|
|
56 |
title: `ONNX Runtime`,
|
57 |
description: `ONNX Runtime`,
|
58 |
demos: {
|
59 |
-
phi2: {
|
60 |
name: 'phi2',
|
61 |
description: `phi2 from Microsoft`,
|
62 |
filename: "ort-phi2",
|
63 |
},
|
64 |
-
sam: {
|
65 |
name: 'Segment Anything',
|
66 |
description: `Segment Anything from https://github.com/guschmue/ort-webgpu/tree/master/segment-anything`,
|
67 |
filename: "ort-sam",
|
68 |
},
|
69 |
-
sdturbo: {
|
70 |
name: 'Stable Diffusion Turbo',
|
71 |
description: `Stable Diffusion Turbo from https://github.com/guschmue/ort-webgpu/tree/master/sd-turbo`,
|
72 |
-
filename: "ort-
|
73 |
},
|
74 |
-
tinyllama: {
|
75 |
name: 'Tiny Llama',
|
76 |
description: `Tiny Llama from https://github.com/guschmue/ort-webgpu/tree/master/chat`,
|
77 |
filename: "ort-tiny-llama",
|
78 |
},
|
79 |
-
yolo: {
|
80 |
name: 'Yolo',
|
81 |
description: `Yolo V9 from https://github.com/guschmue/ort-webgpu/tree/master/yolov9`,
|
82 |
filename: "ort-yolo",
|
@@ -87,7 +87,7 @@ const pageCategories = [
|
|
87 |
title: `TFLite`,
|
88 |
description: `TFLite`,
|
89 |
demos: {
|
90 |
-
gemma: {
|
91 |
name: 'Gemma',
|
92 |
description: `Gemma with TFLite and MediaPipe from https://github.com/googlesamples/mediapipe/tree/main/examples/llm_inference/js, <a href=https://developers.googleblog.com/2024/03/running-large-language-models-on-device-with-mediapipe-andtensorflow-lite.html>more info.</a>`,
|
93 |
filename: "tflite-gemma",
|
|
|
56 |
title: `ONNX Runtime`,
|
57 |
description: `ONNX Runtime`,
|
58 |
demos: {
|
59 |
+
'ort-phi2': {
|
60 |
name: 'phi2',
|
61 |
description: `phi2 from Microsoft`,
|
62 |
filename: "ort-phi2",
|
63 |
},
|
64 |
+
'ort-sam': {
|
65 |
name: 'Segment Anything',
|
66 |
description: `Segment Anything from https://github.com/guschmue/ort-webgpu/tree/master/segment-anything`,
|
67 |
filename: "ort-sam",
|
68 |
},
|
69 |
+
'ort-sdturbo': {
|
70 |
name: 'Stable Diffusion Turbo',
|
71 |
description: `Stable Diffusion Turbo from https://github.com/guschmue/ort-webgpu/tree/master/sd-turbo`,
|
72 |
+
filename: "ort-sdturbo",
|
73 |
},
|
74 |
+
'ort-tinyllama': {
|
75 |
name: 'Tiny Llama',
|
76 |
description: `Tiny Llama from https://github.com/guschmue/ort-webgpu/tree/master/chat`,
|
77 |
filename: "ort-tiny-llama",
|
78 |
},
|
79 |
+
'ort-yolo': {
|
80 |
name: 'Yolo',
|
81 |
description: `Yolo V9 from https://github.com/guschmue/ort-webgpu/tree/master/yolov9`,
|
82 |
filename: "ort-yolo",
|
|
|
87 |
title: `TFLite`,
|
88 |
description: `TFLite`,
|
89 |
demos: {
|
90 |
+
'tflite-gemma': {
|
91 |
name: 'Gemma',
|
92 |
description: `Gemma with TFLite and MediaPipe from https://github.com/googlesamples/mediapipe/tree/main/examples/llm_inference/js, <a href=https://developers.googleblog.com/2024/03/running-large-language-models-on-device-with-mediapipe-andtensorflow-lite.html>more info.</a>`,
|
93 |
filename: "tflite-gemma",
|