Instructions to use ddrg/math_structure_bert with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ddrg/math_structure_bert with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="ddrg/math_structure_bert")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("ddrg/math_structure_bert") model = AutoModel.from_pretrained("ddrg/math_structure_bert") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,7 +1,9 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
# Mathematical Structure Aware BERT
|
|
@@ -10,5 +12,4 @@
|
|
| 10 |
|
| 11 |
Pretrained model based on [bert-base-cased](https://huggingface.co/bert-base-cased) with further mathematical pre-training.
|
| 12 |
|
| 13 |
-
Compared to bert-base-cased, 300 additional mathematical [LaTeX tokens](added_tokens.json) have been added before the mathematical pre-training.
|
| 14 |
-
|
|
|
|
| 1 |
---
|
| 2 |
+
datasets:
|
| 3 |
+
- ddrg/math_formulas
|
| 4 |
+
- ddrg/named_math_formulas
|
| 5 |
+
- ddrg/math_formula_retrieval
|
| 6 |
+
- ddrg/math_text
|
| 7 |
---
|
| 8 |
|
| 9 |
# Mathematical Structure Aware BERT
|
|
|
|
| 12 |
|
| 13 |
Pretrained model based on [bert-base-cased](https://huggingface.co/bert-base-cased) with further mathematical pre-training.
|
| 14 |
|
| 15 |
+
Compared to bert-base-cased, 300 additional mathematical [LaTeX tokens](added_tokens.json) have been added before the mathematical pre-training.
|
|
|