Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing

  • Log In
  • Sign Up

ElisonSherton
/
hf-course

Fill-Mask
Transformers
PyTorch
bert
Model card Files Files and versions
xet
Community
1

Instructions to use ElisonSherton/hf-course with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use ElisonSherton/hf-course with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("fill-mask", model="ElisonSherton/hf-course")
    # Load model directly
    from transformers import AutoTokenizer, AutoModelForMaskedLM
    
    tokenizer = AutoTokenizer.from_pretrained("ElisonSherton/hf-course")
    model = AutoModelForMaskedLM.from_pretrained("ElisonSherton/hf-course")
  • Notebooks
  • Google Colab
  • Kaggle
hf-course / chapter3
79 kB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 1 commit
ElisonSherton's picture
ElisonSherton
Initial Commit
af50acb almost 2 years ago
  • 3-a-full-training.ipynb
    13 kB
    Initial Commit almost 2 years ago
  • 3-fine-tuning-a-model-with-the-Trainer-API.ipynb
    25 kB
    Initial Commit almost 2 years ago
  • 3-processing-the-data.ipynb
    41 kB
    Initial Commit almost 2 years ago