|
---
|
|
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 |