Sentence Similarity
sentence-transformers
English
sklearn-random-forest
feature-extraction
education
course-outcomes
program-outcomes
co-po-mapping
Instructions to use Jrine/co-po with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use Jrine/co-po with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("Jrine/co-po") sentences = [ "That is a happy person", "That is a happy dog", "That is a very happy person", "Today is a sunny day" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Add Python dependencies
Browse files- requirements.txt +4 -0
requirements.txt
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
scikit-learn>=1.3.0
|
| 2 |
+
pandas>=2.0.0
|
| 3 |
+
numpy>=1.24.0
|
| 4 |
+
huggingface-hub>=0.19.0
|