|
|
|
--- |
|
pipeline_tag: sentence-similarity |
|
language: pt |
|
license: mit |
|
tags: |
|
- passage-retrieval |
|
- sentence-similarity |
|
- pruned |
|
library_name: sentence-transformers |
|
base_model: BAAI/bge-m3 |
|
base_model_relation: quantized |
|
--- |
|
# 🇵🇹 portuguese-bge-m3 |
|
|
|
This model is a 38.5% smaller version of [BAAI/bge-m3](https://huggingface.co/BAAI/bge-m3) |
|
for the Portuguese language, created using the [mtem-pruner](https://huggingface.co/spaces/antoinelouis/mtem-pruner) space. |
|
|
|
This pruned model should perform similarly to the original model for Portuguese language tasks with a much smaller |
|
memory footprint. However, it may not perform well for other languages present in the original multilingual model as tokens not |
|
commonly used in Portuguese were removed from the original multilingual model's vocabulary. |
|
|
|
## Usage |
|
|
|
You can use this model with the Transformers library: |
|
|
|
```python |
|
from transformers import AutoModel, AutoTokenizer |
|
|
|
model_name = "nonola/portuguese-bge-m3" |
|
model = AutoModel.from_pretrained(model_name, trust_remote_code=True) |
|
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True, use_fast=True) |
|
``` |
|
|
|
Or with the sentence-transformers library: |
|
|
|
```python |
|
from sentence_transformers import SentenceTransformer |
|
|
|
model = SentenceTransformer("nonola/portuguese-bge-m3") |
|
``` |
|
|
|
**Credits**: cc [@antoinelouis](https://huggingface.co/antoinelouis) |
|
|