Views
No views yet
google-bert/bert-base-cased for domain-specific terminology extraction.label2id, id2label)dev_ratio=0.1)BertTokenizerFastis_split_into_words=Trueword_ids()-100 (ignored in loss)google-bert/bert-base-casedTrainerload_best_model_at_end=Trueseqeval library.1precision recall f1-score support
2...
3
4🎯 Intended Use
5
6This model is suitable for:
7
8Financial terminology extraction
9Terminology preprocessing for translation systems
10Supporting CAT tools
11Domain-specific NLP pipelines
12🚫 Out-of-Scope Use
13
14This model is not intended for:
15
16General-purpose NER tasks
17Legal or compliance decision-making
18Fully automated terminology validation without human review
19🚀 Usage
20from transformers import pipeline
21
22pipe = pipeline(
23 "token-classification",
24 model="owen4512/bert-base-cased-finance-term-extractor",
25 aggregation_strategy="simple"
26)
27
28text = "The firm increased exposure to derivatives and sovereign bonds."
29print(pipe(text))
30🧾 Example
31
32Input:
33"The company issued convertible bonds and derivatives."
34
35Output:
36["convertible bonds", "derivatives"]
37
38⚠️ Limitations
39Domain-specific: performance outside finance may degrade
40Rare or unseen terms may not be recognized
41Tokenization may split multi-word terms
42Human validation is recommended
43📜 License
44
45This model is derived from data released under CC BY-NC 4.0.
46
47✅ Non-commercial use allowed
48❌ Commercial use prohibited without permission
49✅ Attribution required
50
51The base model google-bert/bert-base-cased is licensed under Apache 2.0, but this fine-tuned model inherits restrictions from the training data.
52
53🙏 Acknowledgements
54Base model: google-bert/bert-base-cased
55Dataset: WMT 2025 terminology resources
56Framework: Hugging Face Transformers & Datasets
57Metrics: seqeval