File size: 1,125 Bytes
09bb202 a568f31 09bb202 a568f31 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
---
license: apache-2.0
language:
- zh
base_model: google-bert/bert-base-chinese
tags:
- finance
---
## Model Details
**FinBERT1-Base** is a financial domain-adapted Chinese language model. Built on Google's BERT-Base architecture, it was continually pretrained on large-scale Chinese financial corpora to enhance financial text understanding.
- **Developed by:** See [valuesimplex](https://github.com/valuesimplex) for model developers
- **Model Type:** Transformer-based language model
- **Language(s):** Chinese
- **Parent Model:** See the [bert-base-chinese](https://huggingface.co/google-bert/bert-base-chinese) for more information about the BERT base model.
- **Resources:** [https://github.com/valuesimplex/FinBERT](https://github.com/valuesimplex/FinBERT)
## Direct Use
```python
from transformers import AutoModel, AutoTokenizer
model = AutoModel.from_pretrained("valuesimplex-ai-lab/FinBERT1-base")
tokenizer = AutoTokenizer.from_pretrained("valuesimplex-ai-lab/FinBERT1-base")
```
### Further Usage
continual pre-training or fine-tuning:https://github.com/valuesimplex/FinBERT |