Instructions to use HYdsl/FiLM with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HYdsl/FiLM with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="HYdsl/FiLM")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("HYdsl/FiLM") model = AutoModelForMaskedLM.from_pretrained("HYdsl/FiLM", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -14,7 +14,7 @@ Github: https://github.com/deep-over/FiLM
|
|
| 14 |
|
| 15 |
### **FiLM**(**Fi**nancial **L**anguage **M**odel) Models 🌟
|
| 16 |
|
| 17 |
-
FiLM is a Pre-trained Language Model (PLM) optimized for the Financial domain, built upon a diverse range of Financial domain corpora. Initialized with the RoBERTa-base model, FiLM undergoes further training to achieve performance that surpasses RoBERTa-base in
|
| 18 |
|
| 19 |
To train FiLM, we have categorized our Financial Corpus into specific groups and gathered a diverse range of corpora to ensure optimal performance.
|
| 20 |
|
|
|
|
| 14 |
|
| 15 |
### **FiLM**(**Fi**nancial **L**anguage **M**odel) Models 🌟
|
| 16 |
|
| 17 |
+
FiLM is a Pre-trained Language Model (PLM) optimized for the Financial domain, built upon a diverse range of Financial domain corpora. Initialized with the RoBERTa-base model, FiLM undergoes further training to achieve performance that surpasses RoBERTa-base in financial domain for the first time.
|
| 18 |
|
| 19 |
To train FiLM, we have categorized our Financial Corpus into specific groups and gathered a diverse range of corpora to ensure optimal performance.
|
| 20 |
|