Skip to content

Commit f702594

Browse files
committed
update models
1 parent b9c48f5 commit f702594

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

docs/_static/html/models_en_sentence_embeddings.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@
228228
</div>
229229

230230
<script>
231+
231232
var app = new Vue({
232233
el: '#app',
233234
data: {
@@ -830,7 +831,7 @@
830831
"pooling": "Mean Pooling",
831832
"training_data": "3B question-answer pairs from diverse online communities and then on MS-MARCO.",
832833
"sentence_performance": 70.73,
833-
"semantic_search": 56.05,
834+
"semantic_search": 55.76,
834835
"speed": 50,
835836
"size": 9230,
836837
"dim": 768,
@@ -876,6 +877,13 @@
876877
return output_html.join(", ");
877878
}
878879
},
880+
created: function() {
881+
let uri = window.location.search.substring(1);
882+
let params = new URLSearchParams(uri);
883+
if(params.get("model_name") !== null) {
884+
this.show_all_models = true;
885+
}
886+
},
879887
computed: {
880888
sortedModels: function() {
881889
//Add avg. of sentence and semantic search performance

0 commit comments

Comments
 (0)