From c8d1208da3e59c14473151715f18cd33265b1f1f Mon Sep 17 00:00:00 2001 From: Pringled Date: Fri, 25 Oct 2024 12:36:55 +0200 Subject: [PATCH 1/2] Fixed links --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0c8f54b..cbe0e36 100644 --- a/README.md +++ b/README.md @@ -46,9 +46,9 @@ Model2Vec is a technique to turn any sentence transformer into a really small st - [Main Features](#main-features) - [What is Model2Vec?](#what-is-model2vec) - [Usage](#usage) - - [Distilling a Model2Vec model](#distilling-a-model2vec-model) - - [Inferencing a Model2Vec model](#inference-with-a-model2vec-model) - - [Evaluating a Model2Vec model](#evaluating-a-model2vec-model) + - [Distillation](#distillation) + - [Inference](#inference) + - [Evaluation](#evaluation) - [Model List](#model-list) - [Results](#results) - [Related Work](#related-work) From 9127234882f380b2e7076d213d8113ab6c7dde10 Mon Sep 17 00:00:00 2001 From: Pringled Date: Fri, 25 Oct 2024 12:39:26 +0200 Subject: [PATCH 2/2] Updated install command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cbe0e36..6375c65 100644 --- a/README.md +++ b/README.md @@ -307,7 +307,7 @@ embeddings = model.encode(["It's dangerous to go alone!", "It's a secret to ever Our models can be evaluated using our [evaluation package](https://github.com/MinishLab/evaluation). Install the evaluation package with: ```bash -pip install evaluation@git+https://github.com MinishLab/evaluation@main +pip install git+https://github.com/MinishLab/evaluation.git@main ```