Instructions to use alikLab/NoLBERT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use alikLab/NoLBERT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="alikLab/NoLBERT")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("alikLab/NoLBERT") model = AutoModelForMaskedLM.from_pretrained("alikLab/NoLBERT") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -101,7 +101,7 @@ print(f"Text: {text}")
|
|
| 101 |
print(f"Embedding (first 10 dimensions): {cls_embedding[:10].tolist()}")
|
| 102 |
```
|
| 103 |
|
| 104 |
-
See [paper](https://arxiv.org/abs/2509.01110) for more details (NeurIPS 2025 Gen AI in Finance).
|
| 105 |
|
| 106 |
## Citation
|
| 107 |
|
|
|
|
| 101 |
print(f"Embedding (first 10 dimensions): {cls_embedding[:10].tolist()}")
|
| 102 |
```
|
| 103 |
|
| 104 |
+
See our [paper](https://arxiv.org/abs/2509.01110) for more details (NeurIPS 2025 Gen AI in Finance).
|
| 105 |
|
| 106 |
## Citation
|
| 107 |
|