Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: unknown
|
3 |
+
library_name: model2vec
|
4 |
+
license: mit
|
5 |
+
model_name: model_eu_m2v-256-BERnaT-base
|
6 |
+
tags:
|
7 |
+
- embeddings
|
8 |
+
- static-embeddings
|
9 |
+
- sentence-transformers
|
10 |
+
datasets:
|
11 |
+
- Jarbas/ovos-intents-train-v1
|
12 |
+
language:
|
13 |
+
- eu
|
14 |
+
---
|
15 |
+
|
16 |
+
# model_eu_m2v-256-BERnaT-base Model Card
|
17 |
+
|
18 |
+
This [Model2Vec](https://github.com/MinishLab/model2vec) model is a fine-tuned version of the [unknown](https://huggingface.co/unknown) Model2Vec model. It also includes a classifier head on top.
|
19 |
+
|
20 |
+
## Installation
|
21 |
+
|
22 |
+
Install model2vec using pip:
|
23 |
+
```
|
24 |
+
pip install model2vec[inference]
|
25 |
+
```
|
26 |
+
|
27 |
+
## Usage
|
28 |
+
Load this model using the `from_pretrained` method:
|
29 |
+
```python
|
30 |
+
from model2vec.inference import StaticModelPipeline
|
31 |
+
|
32 |
+
# Load a pretrained Model2Vec model
|
33 |
+
model = StaticModelPipeline.from_pretrained("model_eu_m2v-256-BERnaT-base")
|
34 |
+
|
35 |
+
# Predict labels
|
36 |
+
predicted = model.predict(["Example sentence"])
|
37 |
+
```
|
38 |
+
|
39 |
+
## Additional Resources
|
40 |
+
|
41 |
+
- [Model2Vec Repo](https://github.com/MinishLab/model2vec)
|
42 |
+
- [Model2Vec Base Models](https://huggingface.co/collections/minishlab/model2vec-base-models-66fd9dd9b7c3b3c0f25ca90e)
|
43 |
+
- [Model2Vec Results](https://github.com/MinishLab/model2vec/tree/main/results)
|
44 |
+
- [Model2Vec Tutorials](https://github.com/MinishLab/model2vec/tree/main/tutorials)
|
45 |
+
- [Website](https://minishlab.github.io/)
|
46 |
+
|
47 |
+
## Library Authors
|
48 |
+
|
49 |
+
Model2Vec was developed by the [Minish Lab](https://github.com/MinishLab) team consisting of [Stephan Tulkens](https://github.com/stephantul) and [Thomas van Dongen](https://github.com/Pringled).
|
50 |
+
|
51 |
+
## Citation
|
52 |
+
|
53 |
+
Please cite the [Model2Vec repository](https://github.com/MinishLab/model2vec) if you use this model in your work.
|
54 |
+
```
|
55 |
+
@article{minishlab2024model2vec,
|
56 |
+
author = {Tulkens, Stephan and {van Dongen}, Thomas},
|
57 |
+
title = {Model2Vec: Fast State-of-the-Art Static Embeddings},
|
58 |
+
year = {2024},
|
59 |
+
url = {https://github.com/MinishLab/model2vec}
|
60 |
+
}
|
61 |
+
```
|