Skip to content

Commit

Permalink
update models
Browse files Browse the repository at this point in the history
  • Loading branch information
nreimers committed Feb 10, 2022
1 parent b9c48f5 commit f702594
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/_static/html/models_en_sentence_embeddings.html
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@
</div>

<script>

var app = new Vue({
el: '#app',
data: {
Expand Down Expand Up @@ -830,7 +831,7 @@
"pooling": "Mean Pooling",
"training_data": "3B question-answer pairs from diverse online communities and then on MS-MARCO.",
"sentence_performance": 70.73,
"semantic_search": 56.05,
"semantic_search": 55.76,
"speed": 50,
"size": 9230,
"dim": 768,
Expand Down Expand Up @@ -876,6 +877,13 @@
return output_html.join(", ");
}
},
created: function() {
let uri = window.location.search.substring(1);
let params = new URLSearchParams(uri);
if(params.get("model_name") !== null) {
this.show_all_models = true;
}
},
computed: {
sortedModels: function() {
//Add avg. of sentence and semantic search performance
Expand Down

0 comments on commit f702594

Please sign in to comment.