boltuix / bert-pro

huggingface.co
Total runs: 9
24-hour runs: 0
7-day runs: 1
30-day runs: 3
Model's Last Updated: June 25 2025
fill-mask

Introduction of bert-pro

Model Details of bert-pro

License: MIT Model Size Type Performance

Model Card for boltuix/bert-pro

The boltuix/bert-pro model is a high-performance BERT variant designed for natural language processing tasks requiring maximum accuracy. Pretrained on English text using masked language modeling (MLM) and next sentence prediction (NSP) objectives, it is optimized for fine-tuning on complex NLP tasks such as sequence classification, token classification, and question answering. With a size of ~420 MB, it prioritizes top-tier performance over resource efficiency.

Model Details
Model Description

The boltuix/bert-pro model is a PyTorch-based transformer model derived from TensorFlow checkpoints in the Google BERT repository. It builds on research from On the Importance of Pre-training Compact Models ( arXiv ) and Generalization in NLI: Ways (Not) To Go Beyond Simple Heuristics ( arXiv ). Ported to Hugging Face, this uncased model (~420 MB) is engineered for applications demanding the highest accuracy, such as advanced NLI tasks, sentiment analysis, and question answering, making it ideal for enterprise-grade NLP solutions.

  • Developed by: BoltUIX
  • Funded by [optional]: BoltUIX Research Fund
  • Shared by [optional]: Hugging Face
  • Model type: Transformer (BERT)
  • Language(s) (NLP): English ( en )
  • License: MIT
  • Finetuned from model [optional]: google-bert/bert-base-uncased
Model Sources
Model Variants

BoltUIX offers a range of BERT-based models tailored to different performance and resource requirements. The boltuix/bert-pro model is the highest-accuracy variant, suitable for applications where precision is critical. Below is a summary of available models:

Tier Model ID Size (MB) Notes
Micro boltuix/bert-micro ~15 MB Smallest, blazing-fast, moderate accuracy
Tinyplus boltuix/bert-tinyplus ~20 MB Slightly bigger, better capacity
Small boltuix/bert-small ~45 MB Good compact/accuracy balance
Mid boltuix/bert-mid ~50 MB Well-rounded mid-tier performance
Medium boltuix/bert-medium ~160 MB Strong general-purpose model
Large boltuix/bert-large ~365 MB Top performer below full-BERT
Pro boltuix/bert-pro ~420 MB Use only if max accuracy is mandatory
Mobile boltuix/bert-mobile ~140 MB Mobile-optimized; quantize to ~25 MB with no major loss

For more details on each variant, visit the BoltUIX Model Hub .

Uses
Direct Use

The model can be used directly for masked language modeling or next sentence prediction tasks, such as predicting missing words in sentences or determining sentence coherence, delivering high accuracy in these core tasks.

Downstream Use

The model is designed for fine-tuning on high-stakes downstream NLP tasks, including:

  • Sequence classification (e.g., sentiment analysis, intent detection)
  • Token classification (e.g., named entity recognition, part-of-speech tagging)
  • Question answering (e.g., extractive QA, reading comprehension)
  • Natural language inference (e.g., MNLI, RTE) It is recommended for researchers, data scientists, and enterprises requiring state-of-the-art performance in NLP applications.
Out-of-Scope Use

The model is not suitable for:

  • Text generation tasks (use generative models like GPT-3 instead).
  • Non-English language tasks without significant fine-tuning.
  • Ultra-low-latency or resource-constrained environments (use boltuix/bert-micro or boltuix/bert-mid instead).
Bias, Risks, and Limitations

The model may inherit biases from its training data (BookCorpus and English Wikipedia), potentially reinforcing stereotypes, such as gender or occupational biases. For example:

from transformers import pipeline
unmasker = pipeline('fill-mask', model='boltuix/bert-pro')
unmasker("The man worked as a [MASK].")

Output :

[
  {'sequence': '[CLS] the man worked as a engineer. [SEP]', 'token_str': 'engineer'},
  {'sequence': '[CLS] the man worked as a doctor. [SEP]', 'token_str': 'doctor'},
  ...
]
unmasker("The woman worked as a [MASK].")

Output :

[
  {'sequence': '[CLS] the woman worked as a teacher. [SEP]', 'token_str': 'teacher'},
  {'sequence': '[CLS] the woman worked as a nurse. [SEP]', 'token_str': 'nurse'},
  ...
]

These biases may propagate to downstream tasks. Due to its size (~420 MB), the model requires significant computational resources, making it less suitable for edge devices without optimization.

Recommendations

Users should:

  • Conduct bias audits tailored to their application.
  • Fine-tune with diverse, representative datasets to reduce bias.
  • Apply model compression techniques (e.g., quantization, pruning) for resource-constrained deployments.
How to Get Started with the Model

Use the code below to get started with the model.

from transformers import pipeline, BertTokenizer, BertModel

# Masked Language Modeling
unmasker = pipeline('fill-mask', model='boltuix/bert-pro')
result = unmasker("Hello I'm a [MASK] model.")
print(result)

# Feature Extraction (PyTorch)
tokenizer = BertTokenizer.from_pretrained('boltuix/bert-pro')
model = BertModel.from_pretrained('boltuix/bert-pro')
text = "Replace me by any text you'd like."
encoded_input = tokenizer(text, return_tensors='pt')
output = model(**encoded_input)
Training Details
Training Data

The model was pretrained on:

  • BookCorpus : ~11,038 unpublished books, providing diverse narrative text.
  • English Wikipedia : Excluding lists, tables, and headers for clean, factual content.

See the BoltUIX Dataset Card for more details.

Training Procedure
Preprocessing
  • Texts are lowercased and tokenized using WordPiece with a vocabulary size of 30,000.
  • Inputs are formatted as: [CLS] Sentence A [SEP] Sentence B [SEP] .
  • 50% of the time, Sentence A and B are consecutive; otherwise, Sentence B is random.
  • Masking:
    • 15% of tokens are masked.
    • 80% of masked tokens are replaced with [MASK] .
    • 10% are replaced with a random token.
    • 10% are left unchanged.
Training Hyperparameters
  • Training regime: fp16 mixed precision
  • Optimizer : Adam (learning rate 1e-4, β1=0.9, β2=0.999, weight decay 0.01)
  • Batch size : 512
  • Steps : 1.5 million
  • Sequence length : 128 tokens (80% of steps), 512 tokens (20% of steps)
  • Warmup : 15,000 steps with linear learning rate decay
Speeds, Sizes, Times
  • Training time : Approximately 360 hours
  • Checkpoint size : ~420 MB
  • Throughput : ~80 sentences/second on TPU infrastructure
Evaluation
Testing Data, Factors & Metrics
Testing Data

Evaluated on the GLUE benchmark, including tasks like MNLI, QQP, QNLI, SST-2, CoLA, STS-B, MRPC, and RTE.

Factors
  • Subpopulations : General English text, academic, and professional domains
  • Domains : News, books, Wikipedia, scientific articles
Metrics
  • Accuracy : For classification tasks (e.g., MNLI, SST-2)
  • F1 Score : For tasks like QQP, MRPC
  • Pearson/Spearman Correlation : For STS-B
Results

GLUE test results (fine-tuned):

Task MNLI-(m/mm) QQP QNLI SST-2 CoLA STS-B MRPC RTE Average
Score 86.2/85.1 72.8 92.3 94.7 55.4 87.2 90.1 68.9 81.4
Summary

The model excels across GLUE tasks, with exceptional performance in SST-2, QNLI, and MRPC. It shows improved results over smaller BERT variants in complex tasks like RTE and CoLA, reflecting its high-accuracy design.

Model Examination

The model’s attention mechanisms were rigorously analyzed to ensure robust contextual understanding, with minimal overfitting observed during pretraining. Ablation studies confirmed the benefit of extended training steps for accuracy gains.

Environmental Impact

Carbon emissions estimated using the Machine Learning Impact calculator from Lacoste et al. (2019) .

  • Hardware Type : 8 cloud TPUs (32 TPU chips)
  • Hours used : 360 hours
  • Cloud Provider : Google Cloud
  • Compute Region : us-central1
  • Carbon Emitted : ~250 kg CO2eq (estimated based on TPU energy consumption and regional grid carbon intensity)
Technical Specifications
Model Architecture and Objective
  • Architecture : BERT (transformer-based, bidirectional)
  • Objective : Masked Language Modeling (MLM) and Next Sentence Prediction (NSP)
  • Layers : 12
  • Hidden Size : 768
  • Attention Heads : 12
Compute Infrastructure
Hardware
  • 8 cloud TPUs in Pod configuration (32 TPU chips total)
Software
  • PyTorch
  • Transformers library (Hugging Face)
Citation

BibTeX:

@article{DBLP:journals/corr/abs-1810-04805,
  author    = {Jacob Devlin and Ming{-}Wei Chang and Kenton Lee and Kristina Toutanova},
  title     = {{BERT:} Pre-training of Deep Bidirectional Transformers for Language Understanding},
  journal   = {CoRR},
  volume    = {abs/1810.04805},
  year      = {2018},
  url       = {http://arxiv.org/abs/1810.04805},
  archivePrefix = {arXiv},
  eprint    = {1810.04805}
}

APA: Devlin, J., Chang, M.-W., Lee, K., & Toutanova, K. (2018). BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding. CoRR, abs/1810.04805 . http://arxiv.org/abs/1810.04805

Glossary
  • MLM : Masked Language Modeling, where 15% of tokens are masked for prediction.
  • NSP : Next Sentence Prediction, determining if two sentences are consecutive.
  • WordPiece : Tokenization method splitting words into subword units.
More Information

Runs of boltuix bert-pro on huggingface.co

9
Total runs
0
24-hour runs
1
3-day runs
1
7-day runs
3
30-day runs

More Information About bert-pro huggingface.co Model

More bert-pro license Visit here:

https://choosealicense.com/licenses/mit

bert-pro huggingface.co

bert-pro huggingface.co is an AI model on huggingface.co that provides bert-pro's model effect (), which can be used instantly with this boltuix bert-pro model. huggingface.co supports a free trial of the bert-pro model, and also provides paid use of the bert-pro. Support call bert-pro model through api, including Node.js, Python, http.

boltuix bert-pro online free

bert-pro huggingface.co is an online trial and call api platform, which integrates bert-pro's modeling effects, including api services, and provides a free online trial of bert-pro, you can try bert-pro online for free by clicking the link below.

boltuix bert-pro online free url in huggingface.co:

https://huggingface.co/boltuix/bert-pro

bert-pro install

bert-pro is an open source model from GitHub that offers a free installation service, and any user can find bert-pro on GitHub to install. At the same time, huggingface.co provides the effect of bert-pro install, users can directly use bert-pro installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

bert-pro install url in huggingface.co:

https://huggingface.co/boltuix/bert-pro

Url of bert-pro

bert-pro huggingface.co Url

Provider of bert-pro huggingface.co

boltuix
ORGANIZATIONS

Other API from boltuix

huggingface.co

Total runs: 56.6K
Run Growth: -20.4K
Growth Rate: -35.97%
Updated:June 30 2025
huggingface.co

Total runs: 3.0K
Run Growth: 403
Growth Rate: 13.50%
Updated:June 30 2025
huggingface.co

Total runs: 1.6K
Run Growth: 877
Growth Rate: 55.51%
Updated:June 30 2025
huggingface.co

Total runs: 1.4K
Run Growth: -877
Growth Rate: -62.46%
Updated:June 30 2025
huggingface.co

Total runs: 58
Run Growth: 45
Growth Rate: 77.59%
Updated:June 25 2025
huggingface.co

Total runs: 47
Run Growth: 29
Growth Rate: 61.70%
Updated:June 25 2025
huggingface.co

Total runs: 41
Run Growth: 28
Growth Rate: 68.29%
Updated:June 30 2025
huggingface.co

Total runs: 38
Run Growth: 0
Growth Rate: 0.00%
Updated:March 28 2025
huggingface.co

Total runs: 31
Run Growth: 14
Growth Rate: 45.16%
Updated:June 09 2025
huggingface.co

Total runs: 31
Run Growth: 3
Growth Rate: 9.68%
Updated:June 25 2025
huggingface.co

Total runs: 30
Run Growth: 21
Growth Rate: 70.00%
Updated:June 25 2025
huggingface.co

Total runs: 24
Run Growth: 0
Growth Rate: 0.00%
Updated:June 30 2025
huggingface.co

Total runs: 24
Run Growth: 10
Growth Rate: 41.67%
Updated:June 14 2025
huggingface.co

Total runs: 23
Run Growth: 0
Growth Rate: 0.00%
Updated:March 29 2025
huggingface.co

Total runs: 22
Run Growth: -70
Growth Rate: -318.18%
Updated:June 30 2025
huggingface.co

Total runs: 16
Run Growth: 6
Growth Rate: 37.50%
Updated:June 25 2025
huggingface.co

Total runs: 15
Run Growth: -3
Growth Rate: -20.00%
Updated:June 09 2025
huggingface.co

Total runs: 12
Run Growth: 4
Growth Rate: 33.33%
Updated:June 25 2025
huggingface.co

Total runs: 8
Run Growth: 0
Growth Rate: 0.00%
Updated:April 06 2025