Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

mobilint
/
bert-base-uncased

Fill-Mask
Transformers
Safetensors
Mobilint
English
mobilint-bert
text-generation
custom_code
Model card Files Files and versions
xet
Community

Instructions to use mobilint/bert-base-uncased with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use mobilint/bert-base-uncased with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("fill-mask", model="mobilint/bert-base-uncased", trust_remote_code=True)
    # Load model directly
    from transformers import AutoModelForCausalLM
    model = AutoModelForCausalLM.from_pretrained("mobilint/bert-base-uncased", trust_remote_code=True, device_map="auto")
  • Mobilint

    How to use mobilint/bert-base-uncased with Mobilint:

    # pip install mblt-model-zoo
    from mblt_model_zoo.vision import MBLT_Engine
    
    model = MBLT_Engine(
        model_cls="bert-base-uncased",
        model_type="DEFAULT",
        model_path="",
        core_mode="global8",
    )
    
    try:
        image = model.preprocess("path/to/image.jpg")
        output = model(image)
        result = model.postprocess(output)
    finally:
        model.dispose()
    
  • Notebooks
  • Google Colab
  • Kaggle
bert-base-uncased
172 MB
Ctrl+K
Ctrl+K
  • 3 contributors
History: 12 commits
parkjinman98's picture
parkjinman98
Adjust library_name metadata for model card
d336b8a verified about 2 months ago
  • .gitattributes
    1.58 kB
    Upload folder using huggingface_hub 9 months ago
  • README.md
    636 Bytes
    Adjust library_name metadata for model card about 2 months ago
  • bert-base-uncased.mxq
    73.2 MB
    xet
    Upload bert-base-uncased.mxq 7 months ago
  • config.json
    830 Bytes
    Update config.json 7 months ago
  • model.safetensors
    97.8 MB
    xet
    Upload folder using huggingface_hub 9 months ago
  • proxy_bert.py
    470 Bytes
    Create proxy_bert.py 7 months ago
  • tokenizer.json
    466 kB
    Upload folder using huggingface_hub 9 months ago
  • tokenizer_config.json
    48 Bytes
    Upload folder using huggingface_hub 9 months ago
  • vocab.txt
    232 kB
    Upload folder using huggingface_hub 9 months ago