Skip to content

Commit

Permalink
v27.1.48 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed Sep 19, 2024
1 parent 774cb89 commit 11b66a1
Show file tree
Hide file tree
Showing 1,386 changed files with 71,146 additions and 64,038 deletions.
6 changes: 5 additions & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@
"signature",
"multiline-textbox",
null,
"textarea"
"textarea",
"aiassistview",
"ai",
"assistview",
null
]
}
12 changes: 10 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
<link href="src/common/lib/content/codemirror.css" rel="stylesheet"></link>
<script src="src/skipChunk.js" type="text/javascript"></script>
<script src="src/common.min.js" type="text/javascript"></script>
<script src="src/common/embedding_model.js" type="module"></script>
<script src="src/common/azure_openai.js" type="module"></script>
<script src="src/ai-kanban/custom-model.js" type="module"></script>
<script>
var orgin = location.origin;
var baseref = location.href.split('#')[0].replace(orgin, '');
Expand Down Expand Up @@ -143,7 +146,7 @@
<div class="sb-header-item sb-table-cell" id="sb-dark-theme">
<div class="sb-switch-btn" role="button" data-theme="dark" id="buttoncolor">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;" id="dark-icon"
width="16" height="14" fill="currentColor" class="bi bi-moon" viewBox="0 0 16 16">
width="16" height="15" fill="currentColor" class="bi bi-moon" viewBox="0 0 16 16">
<path
d="M6 .278a.77.77 0 0 1 .08.858 7.2 7.2 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277q.792-.001 1.533-.16a.79.79 0 0 1 .81.316.73.73 0 0 1-.031.893A8.35 8.35 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.75.75 0 0 1 6 .278M4.858 1.311A7.27 7.27 0 0 0 1.025 7.71c0 4.02 3.279 7.276 7.319 7.276a7.32 7.32 0 0 0 5.205-2.162q-.506.063-1.029.063c-4.61 0-8.343-3.714-8.343-8.29 0-1.167.242-2.278.681-3.286" />
</svg>
Expand Down Expand Up @@ -233,6 +236,10 @@
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
<span class="switch-text">Tailwind CSS</span>
</li>
<li class="e-list" id="fluent2-highcontrast" role="listitem">
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
<span class="switch-text">Fluent 2 High Contrast</span>
</li>
<li class="e-list" id="highcontrast">
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
<span class="switch-text">High Contrast</span>
Expand All @@ -242,7 +249,7 @@
<span class="switch-text">Fluent</span>
</li>
</ul>
<div class="sb-theme-studio"><a target="_blank" href="https://ej2.syncfusion.com/themestudio/?theme=material" aria-label="Go to Theme Studio">Go to Theme Studio</a></div>
<div class="sb-theme-studio"><a id="theme-studio" target="_blank" href="https://ej2.syncfusion.com/themestudio/?theme=fluent2" aria-label="Go to Theme Studio">Go to Theme Studio</a></div>
</div>
<div id='settings-popup' class='sb-setting-popup'>
<div class='sb-setting-header'>
Expand All @@ -261,6 +268,7 @@
<option value="bootstrap5">Bootstrap 5</option>
<option value="fluent2">Fluent 2</option>
<option value="tailwind">Tailwind CSS</option>
<option value="fluent2-highcontrast">Fluent 2 High Contrast</option>
<option value="highcontrast">High Contrast</option>
<option value="fluent">Fluent</option>
</select>
Expand Down
24 changes: 24 additions & 0 deletions models/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"architectures": [
"BertModel"
],
"attention_probs_dropout_prob": 0.1,
"classifier_dropout": null,
"hidden_act": "gelu",
"hidden_dropout_prob": 0.1,
"hidden_size": 384,
"initializer_range": 0.02,
"intermediate_size": 1536,
"layer_norm_eps": 1e-12,
"max_position_embeddings": 512,
"model_type": "bert",
"num_attention_heads": 12,
"num_hidden_layers": 12,
"pad_token_id": 0,
"position_embedding_type": "absolute",
"torch_dtype": "float16",
"transformers_version": "4.28.1",
"type_vocab_size": 2,
"use_cache": true,
"vocab_size": 30522
}
Binary file added models/onnx/model_quantized.onnx
Binary file not shown.
Loading

0 comments on commit 11b66a1

Please sign in to comment.