Make Phi-3-mini-4k-instruct-onnx-web alive
Browse files- .gitattributes +37 -35
- LICENSE +223 -0
- README.md +59 -0
- added_tokens.json +13 -0
- config.json +35 -0
- genai_config.json +57 -0
- generation_config.json +11 -0
- onnx/model_q4.onnx +3 -0
- onnx/model_q4.onnx_data +3 -0
- onnx/model_q4f16.onnx +3 -0
- onnx/model_q4f16.onnx_data +3 -0
- special_tokens_map.json +30 -0
- tokenizer.json +0 -0
- tokenizer.model +3 -0
- tokenizer_config.json +130 -0
.gitattributes
CHANGED
@@ -1,35 +1,37 @@
|
|
1 |
-
*.7z filter=lfs diff=lfs merge=lfs -text
|
2 |
-
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3 |
-
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
-
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
5 |
-
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
6 |
-
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7 |
-
*.gz filter=lfs diff=lfs merge=lfs -text
|
8 |
-
*.h5 filter=lfs diff=lfs merge=lfs -text
|
9 |
-
*.joblib filter=lfs diff=lfs merge=lfs -text
|
10 |
-
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
11 |
-
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
12 |
-
*.model filter=lfs diff=lfs merge=lfs -text
|
13 |
-
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
14 |
-
*.npy filter=lfs diff=lfs merge=lfs -text
|
15 |
-
*.npz filter=lfs diff=lfs merge=lfs -text
|
16 |
-
*.onnx filter=lfs diff=lfs merge=lfs -text
|
17 |
-
*.ot filter=lfs diff=lfs merge=lfs -text
|
18 |
-
*.parquet filter=lfs diff=lfs merge=lfs -text
|
19 |
-
*.pb filter=lfs diff=lfs merge=lfs -text
|
20 |
-
*.pickle filter=lfs diff=lfs merge=lfs -text
|
21 |
-
*.pkl filter=lfs diff=lfs merge=lfs -text
|
22 |
-
*.pt filter=lfs diff=lfs merge=lfs -text
|
23 |
-
*.pth filter=lfs diff=lfs merge=lfs -text
|
24 |
-
*.rar filter=lfs diff=lfs merge=lfs -text
|
25 |
-
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
26 |
-
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
27 |
-
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
28 |
-
*.tar filter=lfs diff=lfs merge=lfs -text
|
29 |
-
*.tflite filter=lfs diff=lfs merge=lfs -text
|
30 |
-
*.tgz filter=lfs diff=lfs merge=lfs -text
|
31 |
-
*.wasm filter=lfs diff=lfs merge=lfs -text
|
32 |
-
*.xz filter=lfs diff=lfs merge=lfs -text
|
33 |
-
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
-
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
-
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
onnx/model_q4.onnx_data filter=lfs diff=lfs merge=lfs -text
|
37 |
+
onnx/model_q4f16.onnx_data filter=lfs diff=lfs merge=lfs -text
|
LICENSE
ADDED
@@ -0,0 +1,223 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
MIT License
|
2 |
+
|
3 |
+
Copyright (c) Microsoft Corporation.
|
4 |
+
|
5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6 |
+
of this software and associated documentation files (the "Software"), to deal
|
7 |
+
in the Software without restriction, including without limitation the rights
|
8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9 |
+
copies of the Software, and to permit persons to whom the Software is
|
10 |
+
furnished to do so, subject to the following conditions:
|
11 |
+
|
12 |
+
The above copyright notice and this permission notice shall be included in all
|
13 |
+
copies or substantial portions of the Software.
|
14 |
+
|
15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21 |
+
SOFTWARE
|
22 |
+
|
23 |
+
Apache License
|
24 |
+
Version 2.0, January 2004
|
25 |
+
http://www.apache.org/licenses/
|
26 |
+
|
27 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
28 |
+
|
29 |
+
1. Definitions.
|
30 |
+
|
31 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
32 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
33 |
+
|
34 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
35 |
+
the copyright owner that is granting the License.
|
36 |
+
|
37 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
38 |
+
other entities that control, are controlled by, or are under common
|
39 |
+
control with that entity. For the purposes of this definition,
|
40 |
+
"control" means (i) the power, direct or indirect, to cause the
|
41 |
+
direction or management of such entity, whether by contract or
|
42 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
43 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
44 |
+
|
45 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
46 |
+
exercising permissions granted by this License.
|
47 |
+
|
48 |
+
"Source" form shall mean the preferred form for making modifications,
|
49 |
+
including but not limited to software source code, documentation
|
50 |
+
source, and configuration files.
|
51 |
+
|
52 |
+
"Object" form shall mean any form resulting from mechanical
|
53 |
+
transformation or translation of a Source form, including but
|
54 |
+
not limited to compiled object code, generated documentation,
|
55 |
+
and conversions to other media types.
|
56 |
+
|
57 |
+
"Work" shall mean the work of authorship, whether in Source or
|
58 |
+
Object form, made available under the License, as indicated by a
|
59 |
+
copyright notice that is included in or attached to the work
|
60 |
+
(an example is provided in the Appendix below).
|
61 |
+
|
62 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
63 |
+
form, that is based on (or derived from) the Work and for which the
|
64 |
+
editorial revisions, annotations, elaborations, or other modifications
|
65 |
+
represent, as a whole, an original work of authorship. For the purposes
|
66 |
+
of this License, Derivative Works shall not include works that remain
|
67 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
68 |
+
the Work and Derivative Works thereof.
|
69 |
+
|
70 |
+
"Contribution" shall mean any work of authorship, including
|
71 |
+
the original version of the Work and any modifications or additions
|
72 |
+
to that Work or Derivative Works thereof, that is intentionally
|
73 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
74 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
75 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
76 |
+
means any form of electronic, verbal, or written communication sent
|
77 |
+
to the Licensor or its representatives, including but not limited to
|
78 |
+
communication on electronic mailing lists, source code control systems,
|
79 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
80 |
+
Licensor for the purpose of discussing and improving the Work, but
|
81 |
+
excluding communication that is conspicuously marked or otherwise
|
82 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
83 |
+
|
84 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
85 |
+
on behalf of whom a Contribution has been received by Licensor and
|
86 |
+
subsequently incorporated within the Work.
|
87 |
+
|
88 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
89 |
+
this License, each Contributor hereby grants to You a perpetual,
|
90 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
91 |
+
copyright license to reproduce, prepare Derivative Works of,
|
92 |
+
publicly display, publicly perform, sublicense, and distribute the
|
93 |
+
Work and such Derivative Works in Source or Object form.
|
94 |
+
|
95 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
96 |
+
this License, each Contributor hereby grants to You a perpetual,
|
97 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
98 |
+
(except as stated in this section) patent license to make, have made,
|
99 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
100 |
+
where such license applies only to those patent claims licensable
|
101 |
+
by such Contributor that are necessarily infringed by their
|
102 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
103 |
+
with the Work to which such Contribution(s) was submitted. If You
|
104 |
+
institute patent litigation against any entity (including a
|
105 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
106 |
+
or a Contribution incorporated within the Work constitutes direct
|
107 |
+
or contributory patent infringement, then any patent licenses
|
108 |
+
granted to You under this License for that Work shall terminate
|
109 |
+
as of the date such litigation is filed.
|
110 |
+
|
111 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
112 |
+
Work or Derivative Works thereof in any medium, with or without
|
113 |
+
modifications, and in Source or Object form, provided that You
|
114 |
+
meet the following conditions:
|
115 |
+
|
116 |
+
(a) You must give any other recipients of the Work or
|
117 |
+
Derivative Works a copy of this License; and
|
118 |
+
|
119 |
+
(b) You must cause any modified files to carry prominent notices
|
120 |
+
stating that You changed the files; and
|
121 |
+
|
122 |
+
(c) You must retain, in the Source form of any Derivative Works
|
123 |
+
that You distribute, all copyright, patent, trademark, and
|
124 |
+
attribution notices from the Source form of the Work,
|
125 |
+
excluding those notices that do not pertain to any part of
|
126 |
+
the Derivative Works; and
|
127 |
+
|
128 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
129 |
+
distribution, then any Derivative Works that You distribute must
|
130 |
+
include a readable copy of the attribution notices contained
|
131 |
+
within such NOTICE file, excluding those notices that do not
|
132 |
+
pertain to any part of the Derivative Works, in at least one
|
133 |
+
of the following places: within a NOTICE text file distributed
|
134 |
+
as part of the Derivative Works; within the Source form or
|
135 |
+
documentation, if provided along with the Derivative Works; or,
|
136 |
+
within a display generated by the Derivative Works, if and
|
137 |
+
wherever such third-party notices normally appear. The contents
|
138 |
+
of the NOTICE file are for informational purposes only and
|
139 |
+
do not modify the License. You may add Your own attribution
|
140 |
+
notices within Derivative Works that You distribute, alongside
|
141 |
+
or as an addendum to the NOTICE text from the Work, provided
|
142 |
+
that such additional attribution notices cannot be construed
|
143 |
+
as modifying the License.
|
144 |
+
|
145 |
+
You may add Your own copyright statement to Your modifications and
|
146 |
+
may provide additional or different license terms and conditions
|
147 |
+
for use, reproduction, or distribution of Your modifications, or
|
148 |
+
for any such Derivative Works as a whole, provided Your use,
|
149 |
+
reproduction, and distribution of the Work otherwise complies with
|
150 |
+
the conditions stated in this License.
|
151 |
+
|
152 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
153 |
+
any Contribution intentionally submitted for inclusion in the Work
|
154 |
+
by You to the Licensor shall be under the terms and conditions of
|
155 |
+
this License, without any additional terms or conditions.
|
156 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
157 |
+
the terms of any separate license agreement you may have executed
|
158 |
+
with Licensor regarding such Contributions.
|
159 |
+
|
160 |
+
6. Trademarks. This License does not grant permission to use the trade
|
161 |
+
names, trademarks, service marks, or product names of the Licensor,
|
162 |
+
except as required for reasonable and customary use in describing the
|
163 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
164 |
+
|
165 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
166 |
+
agreed to in writing, Licensor provides the Work (and each
|
167 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
168 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
169 |
+
implied, including, without limitation, any warranties or conditions
|
170 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
171 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
172 |
+
appropriateness of using or redistributing the Work and assume any
|
173 |
+
risks associated with Your exercise of permissions under this License.
|
174 |
+
|
175 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
176 |
+
whether in tort (including negligence), contract, or otherwise,
|
177 |
+
unless required by applicable law (such as deliberate and grossly
|
178 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
179 |
+
liable to You for damages, including any direct, indirect, special,
|
180 |
+
incidental, or consequential damages of any character arising as a
|
181 |
+
result of this License or out of the use or inability to use the
|
182 |
+
Work (including but not limited to damages for loss of goodwill,
|
183 |
+
work stoppage, computer failure or malfunction, or any and all
|
184 |
+
other commercial damages or losses), even if such Contributor
|
185 |
+
has been advised of the possibility of such damages.
|
186 |
+
|
187 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
188 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
189 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
190 |
+
or other liability obligations and/or rights consistent with this
|
191 |
+
License. However, in accepting such obligations, You may act only
|
192 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
193 |
+
of any other Contributor, and only if You agree to indemnify,
|
194 |
+
defend, and hold each Contributor harmless for any liability
|
195 |
+
incurred by, or claims asserted against, such Contributor by reason
|
196 |
+
of your accepting any such warranty or additional liability.
|
197 |
+
|
198 |
+
END OF TERMS AND CONDITIONS
|
199 |
+
|
200 |
+
============================================================================
|
201 |
+
|
202 |
+
Copyright 2016-2019 Intel Corporation
|
203 |
+
Copyright 2018 YANDEX LLC
|
204 |
+
|
205 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
206 |
+
you may not use this file except in compliance with the License.
|
207 |
+
You may obtain a copy of the License at
|
208 |
+
|
209 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
210 |
+
|
211 |
+
Unless required by applicable law or agreed to in writing, software
|
212 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
213 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
214 |
+
See the License for the specific language governing permissions and
|
215 |
+
limitations under the License.
|
216 |
+
|
217 |
+
This distribution includes third party software ("third party programs").
|
218 |
+
This third party software, even if included with the distribution of
|
219 |
+
the Intel software, may be governed by separate license terms, including
|
220 |
+
without limitation, third party license terms, other Intel software license
|
221 |
+
terms, and open source software license terms. These separate license terms
|
222 |
+
govern your use of the third party programs as set forth in the
|
223 |
+
"THIRD-PARTY-PROGRAMS" file.
|
README.md
CHANGED
@@ -1,3 +1,62 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
pipeline_tag: text-generation
|
4 |
+
tags:
|
5 |
+
- ONNX
|
6 |
+
- ONNXRuntime
|
7 |
+
- ONNXRuntimeWeb
|
8 |
+
- phi3
|
9 |
+
- Transformers.js
|
10 |
+
- Transformers
|
11 |
+
- nlp
|
12 |
+
- conversational
|
13 |
+
- custom_code
|
14 |
+
inference: false
|
15 |
---
|
16 |
+
|
17 |
+
# Phi-3 Mini-4K-Instruct ONNX model for in-browser inference
|
18 |
+
|
19 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
20 |
+
Running Phi3-mini-4K entirely in the browser!
|
21 |
+
|
22 |
+
This repository hosts the optimized Web version of ONNX Phi-3-mini-4k-instruct model to accelerate inference in the browser with ONNX Runtime Web.
|
23 |
+
|
24 |
+
[The Phi-3-Mini-4K-Instruct](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct) is a 3.8B parameters, lightweight, state-of-the-art open model trained with the Phi-3 datasets that includes both synthetic data and the filtered publicly available websites data with a focus on high-quality and reasoning dense properties. When assessed against benchmarks testing common sense, language understanding, math, code, long context and logical reasoning, Phi-3 Mini-4K-Instruct showcased a robust and state-of-the-art performance among models with less than 13 billion parameters.
|
25 |
+
|
26 |
+
## How to run
|
27 |
+
|
28 |
+
[ONNX Runtime Web](https://onnxruntime.ai/docs/tutorials/web/build-web-app.html) is a JavaScript library to enable web developers to deploy machine learning models directly in web browsers, offering multiple backends leveraging hardware acceleration. WebGPU backend is recommended to run Phi-3-mini efficiently.
|
29 |
+
|
30 |
+
|
31 |
+
Here is an [E2E example](https://github.com/microsoft/onnxruntime-inference-examples/tree/main/js/chat) for running this optimized Phi3-mini-4K for the web, with ONNX Runtime harnessing WebGPU.
|
32 |
+
|
33 |
+
|
34 |
+
**Supported devices and browser with WebGPU**: Chrome 113+ and Edge 113+ for Mac, Windows, ChromeOS, and Chrome 121+ for Android. Pls visit [here](https://github.com/gpuweb/gpuweb/wiki/Implementation-Status#safari-in-progress) for tracking WebGPU support in browsers
|
35 |
+
|
36 |
+
## Performance Metrics
|
37 |
+
Performance vary between GPUs. The more powerful the GPU, the faster the speed. On a NVIDIA GeForce RTX 4090: ~42 tokens/second
|
38 |
+
|
39 |
+
|
40 |
+
## Additional Details
|
41 |
+
|
42 |
+
To obtain other optimized Phi3-mini-4k ONNX models for server platforms, Windows, Linux, Mac desktops, and mobile, please visit [Phi-3-mini-4k-instruct onnx model](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct-onnx). The model differences in the web version compared to other versions:
|
43 |
+
|
44 |
+
1. the model is fp16 with int4 block quantization for weights
|
45 |
+
2. the 'logits' output is fp32
|
46 |
+
3. the model uses MHA instead of GQA
|
47 |
+
4. onnx and external data file need to stay below 2GB to be cacheable in chromium
|
48 |
+
|
49 |
+
To optimize a fine-tuned Phi3-mini-4k model to run with ONNX Runtime Web, please follow [this Olive example](https://github.com/microsoft/Olive/tree/main/examples/phi3). [Olive](https://github.com/microsoft/OLive) is an easy-to-use model optimization tool for generating an optimized ONNX model to efficiently run with ONNX Runtime across platforms.
|
50 |
+
|
51 |
+
|
52 |
+
## Model Description
|
53 |
+
|
54 |
+
- **Developed by:** Microsoft
|
55 |
+
- **Model type:** ONNX
|
56 |
+
- **Inference Language(s) (NLP):** JavaScript
|
57 |
+
- **License:** MIT
|
58 |
+
- **Model Description:** This is the web version of the Phi-3 Mini-4K-Instruct model for ONNX Runtime inference.
|
59 |
+
|
60 |
+
|
61 |
+
## Model Card Contact
|
62 |
+
guschmue, qining
|
added_tokens.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"<|endoftext|>": 32000,
|
3 |
+
"<|assistant|>": 32001,
|
4 |
+
"<|placeholder1|>": 32002,
|
5 |
+
"<|placeholder2|>": 32003,
|
6 |
+
"<|placeholder3|>": 32004,
|
7 |
+
"<|placeholder4|>": 32005,
|
8 |
+
"<|system|>": 32006,
|
9 |
+
"<|end|>": 32007,
|
10 |
+
"<|placeholder5|>": 32008,
|
11 |
+
"<|placeholder6|>": 32009,
|
12 |
+
"<|user|>": 32010
|
13 |
+
}
|
config.json
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/Phi-3-mini-4k-instruct-onnx",
|
3 |
+
"architectures": [
|
4 |
+
"Phi3ForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"auto_map": {
|
8 |
+
"AutoConfig": "configuration_phi3.Phi3Config",
|
9 |
+
"AutoModelForCausalLM": "modeling_phi3.Phi3ForCausalLM"
|
10 |
+
},
|
11 |
+
"bos_token_id": 1,
|
12 |
+
"embd_pdrop": 0.0,
|
13 |
+
"eos_token_id": 32000,
|
14 |
+
"hidden_act": "silu",
|
15 |
+
"hidden_size": 3072,
|
16 |
+
"initializer_range": 0.02,
|
17 |
+
"intermediate_size": 8192,
|
18 |
+
"max_position_embeddings": 4096,
|
19 |
+
"model_type": "phi3",
|
20 |
+
"num_attention_heads": 32,
|
21 |
+
"num_hidden_layers": 32,
|
22 |
+
"num_key_value_heads": 32,
|
23 |
+
"original_max_position_embeddings": 4096,
|
24 |
+
"pad_token_id": 32000,
|
25 |
+
"resid_pdrop": 0.0,
|
26 |
+
"rms_norm_eps": 1e-05,
|
27 |
+
"rope_scaling": null,
|
28 |
+
"rope_theta": 10000.0,
|
29 |
+
"sliding_window": 2047,
|
30 |
+
"tie_word_embeddings": false,
|
31 |
+
"torch_dtype": "bfloat16",
|
32 |
+
"transformers_version": "4.39.3",
|
33 |
+
"use_cache": true,
|
34 |
+
"vocab_size": 32064
|
35 |
+
}
|
genai_config.json
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model": {
|
3 |
+
"bos_token_id": 1,
|
4 |
+
"context_length": 4096,
|
5 |
+
"decoder": {
|
6 |
+
"session_options": {
|
7 |
+
"log_id": "onnxruntime-genai",
|
8 |
+
"provider_options": [
|
9 |
+
{
|
10 |
+
"web": {}
|
11 |
+
}
|
12 |
+
]
|
13 |
+
},
|
14 |
+
"filename": "model.onnx",
|
15 |
+
"head_size": 96,
|
16 |
+
"hidden_size": 3072,
|
17 |
+
"inputs": {
|
18 |
+
"input_ids": "input_ids",
|
19 |
+
"attention_mask": "attention_mask",
|
20 |
+
"position_ids": "position_ids",
|
21 |
+
"past_key_names": "past_key_values.%d.key",
|
22 |
+
"past_value_names": "past_key_values.%d.value"
|
23 |
+
},
|
24 |
+
"outputs": {
|
25 |
+
"logits": "logits",
|
26 |
+
"present_key_names": "present.%d.key",
|
27 |
+
"present_value_names": "present.%d.value"
|
28 |
+
},
|
29 |
+
"num_attention_heads": 32,
|
30 |
+
"num_hidden_layers": 32,
|
31 |
+
"num_key_value_heads": 32
|
32 |
+
},
|
33 |
+
"eos_token_id": [
|
34 |
+
32000,
|
35 |
+
32007
|
36 |
+
],
|
37 |
+
"pad_token_id": 32000,
|
38 |
+
"type": "phi3",
|
39 |
+
"vocab_size": 32064
|
40 |
+
},
|
41 |
+
"search": {
|
42 |
+
"diversity_penalty": 0.0,
|
43 |
+
"do_sample": false,
|
44 |
+
"early_stopping": true,
|
45 |
+
"length_penalty": 1.0,
|
46 |
+
"max_length": 4096,
|
47 |
+
"min_length": 0,
|
48 |
+
"no_repeat_ngram_size": 0,
|
49 |
+
"num_beams": 1,
|
50 |
+
"num_return_sequences": 1,
|
51 |
+
"past_present_share_buffer": false,
|
52 |
+
"repetition_penalty": 1.0,
|
53 |
+
"temperature": 1.0,
|
54 |
+
"top_k": 1,
|
55 |
+
"top_p": 1.0
|
56 |
+
}
|
57 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 1,
|
4 |
+
"eos_token_id": [
|
5 |
+
32000,
|
6 |
+
32001,
|
7 |
+
32007
|
8 |
+
],
|
9 |
+
"pad_token_id": 32000,
|
10 |
+
"transformers_version": "4.39.3"
|
11 |
+
}
|
onnx/model_q4.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:16b8e5d28a757c37bbfa7d9420fd094c0c20e3615ca3c203b5b9501015045c8f
|
3 |
+
size 1059602332
|
onnx/model_q4.onnx_data
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:41d30b87f06b52e6b24c4e2e65a6a14e5c9fb5bc6f495fac17b19c6bc7875ff5
|
3 |
+
size 1663524864
|
onnx/model_q4f16.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e726f1c300be9714987ebf7cb047afcb002f6ce9a28af1771d05d5d1d4eeaf48
|
3 |
+
size 838080425
|
onnx/model_q4f16.onnx_data
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:62eb6a6870961b0039732d574779e44a7de42e26c04ca1433759728d644cc00f
|
3 |
+
size 1454211072
|
special_tokens_map.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<s>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"eos_token": {
|
10 |
+
"content": "<|endoftext|>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": {
|
17 |
+
"content": "<|endoftext|>",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"unk_token": {
|
24 |
+
"content": "<unk>",
|
25 |
+
"lstrip": false,
|
26 |
+
"normalized": false,
|
27 |
+
"rstrip": false,
|
28 |
+
"single_word": false
|
29 |
+
}
|
30 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
|
3 |
+
size 499723
|
tokenizer_config.json
ADDED
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": true,
|
3 |
+
"add_eos_token": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"0": {
|
6 |
+
"content": "<unk>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"1": {
|
14 |
+
"content": "<s>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"2": {
|
22 |
+
"content": "</s>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": true,
|
26 |
+
"single_word": false,
|
27 |
+
"special": false
|
28 |
+
},
|
29 |
+
"32000": {
|
30 |
+
"content": "<|endoftext|>",
|
31 |
+
"lstrip": false,
|
32 |
+
"normalized": false,
|
33 |
+
"rstrip": false,
|
34 |
+
"single_word": false,
|
35 |
+
"special": true
|
36 |
+
},
|
37 |
+
"32001": {
|
38 |
+
"content": "<|assistant|>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": true,
|
42 |
+
"single_word": false,
|
43 |
+
"special": true
|
44 |
+
},
|
45 |
+
"32002": {
|
46 |
+
"content": "<|placeholder1|>",
|
47 |
+
"lstrip": false,
|
48 |
+
"normalized": false,
|
49 |
+
"rstrip": true,
|
50 |
+
"single_word": false,
|
51 |
+
"special": true
|
52 |
+
},
|
53 |
+
"32003": {
|
54 |
+
"content": "<|placeholder2|>",
|
55 |
+
"lstrip": false,
|
56 |
+
"normalized": false,
|
57 |
+
"rstrip": true,
|
58 |
+
"single_word": false,
|
59 |
+
"special": true
|
60 |
+
},
|
61 |
+
"32004": {
|
62 |
+
"content": "<|placeholder3|>",
|
63 |
+
"lstrip": false,
|
64 |
+
"normalized": false,
|
65 |
+
"rstrip": true,
|
66 |
+
"single_word": false,
|
67 |
+
"special": true
|
68 |
+
},
|
69 |
+
"32005": {
|
70 |
+
"content": "<|placeholder4|>",
|
71 |
+
"lstrip": false,
|
72 |
+
"normalized": false,
|
73 |
+
"rstrip": true,
|
74 |
+
"single_word": false,
|
75 |
+
"special": true
|
76 |
+
},
|
77 |
+
"32006": {
|
78 |
+
"content": "<|system|>",
|
79 |
+
"lstrip": false,
|
80 |
+
"normalized": false,
|
81 |
+
"rstrip": true,
|
82 |
+
"single_word": false,
|
83 |
+
"special": true
|
84 |
+
},
|
85 |
+
"32007": {
|
86 |
+
"content": "<|end|>",
|
87 |
+
"lstrip": false,
|
88 |
+
"normalized": false,
|
89 |
+
"rstrip": true,
|
90 |
+
"single_word": false,
|
91 |
+
"special": true
|
92 |
+
},
|
93 |
+
"32008": {
|
94 |
+
"content": "<|placeholder5|>",
|
95 |
+
"lstrip": false,
|
96 |
+
"normalized": false,
|
97 |
+
"rstrip": true,
|
98 |
+
"single_word": false,
|
99 |
+
"special": true
|
100 |
+
},
|
101 |
+
"32009": {
|
102 |
+
"content": "<|placeholder6|>",
|
103 |
+
"lstrip": false,
|
104 |
+
"normalized": false,
|
105 |
+
"rstrip": true,
|
106 |
+
"single_word": false,
|
107 |
+
"special": true
|
108 |
+
},
|
109 |
+
"32010": {
|
110 |
+
"content": "<|user|>",
|
111 |
+
"lstrip": false,
|
112 |
+
"normalized": false,
|
113 |
+
"rstrip": true,
|
114 |
+
"single_word": false,
|
115 |
+
"special": true
|
116 |
+
}
|
117 |
+
},
|
118 |
+
"bos_token": "<s>",
|
119 |
+
"chat_template": "{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') %}{{'<|user|>' + '\n' + message['content'] + '<|end|>' + '\n' + '<|assistant|>' + '\n'}}{% elif (message['role'] == 'assistant') %}{{message['content'] + '<|end|>' + '\n'}}{% endif %}{% endfor %}",
|
120 |
+
"clean_up_tokenization_spaces": false,
|
121 |
+
"eos_token": "<|endoftext|>",
|
122 |
+
"legacy": false,
|
123 |
+
"model_max_length": 4096,
|
124 |
+
"pad_token": "<|endoftext|>",
|
125 |
+
"padding_side": "left",
|
126 |
+
"sp_model_kwargs": {},
|
127 |
+
"tokenizer_class": "LlamaTokenizer",
|
128 |
+
"unk_token": "<unk>",
|
129 |
+
"use_default_system_prompt": false
|
130 |
+
}
|