Sentence Similarity
sentence-transformers
PyTorch
German
bert
Eval Results (legacy)
text-embeddings-inference
Instructions to use and-effect/musterdatenkatalog_clf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use and-effect/musterdatenkatalog_clf with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("and-effect/musterdatenkatalog_clf") sentences = [ "Bebauungspläne, vorhabenbezogene Bebauungspläne (Geltungsbereiche)", "Fachkräfte für Glücksspielsuchtprävention und -beratung", "Tagespflege Altenhilfe", "Bebauungsplan der Innenentwicklung gem. § 13a BauGB - Ortskern Rütenbrock" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Commit ·
a245a12
1
Parent(s): 341bd6d
Update README.md
Browse files
README.md
CHANGED
|
@@ -258,3 +258,9 @@ As previously mentioned this has to do with the underlying taxonomy. The task on
|
|
| 258 |
In this step the correct labeling of the test data was also checked again for possible mistakes and resulted in a better performance.
|
| 259 |
|
| 260 |
The validation dataset was created manually to check certain classes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 258 |
In this step the correct labeling of the test data was also checked again for possible mistakes and resulted in a better performance.
|
| 259 |
|
| 260 |
The validation dataset was created manually to check certain classes
|
| 261 |
+
|
| 262 |
+
## Additional Information
|
| 263 |
+
|
| 264 |
+
### Licensing Information
|
| 265 |
+
|
| 266 |
+
CC BY 4.0
|