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
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

joelb
/
custom-handler-tutorial

Text Classification
Transformers
PyTorch
English
distilbert
emotion
endpoints-template
Model card Files Files and versions
xet
Community
1

Instructions to use joelb/custom-handler-tutorial with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use joelb/custom-handler-tutorial with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-classification", model="joelb/custom-handler-tutorial")
    # Load model directly
    from transformers import AutoTokenizer, AutoModelForSequenceClassification
    
    tokenizer = AutoTokenizer.from_pretrained("joelb/custom-handler-tutorial")
    model = AutoModelForSequenceClassification.from_pretrained("joelb/custom-handler-tutorial")
  • Notebooks
  • Google Colab
  • Kaggle
custom-handler-tutorial
1.67 kB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 2 commits
joelb's picture
joelb
Upload README.md
1351ab1 over 3 years ago
  • .gitattributes
    1.38 kB
    initial commit over 3 years ago
  • README.md
    285 Bytes
    Upload README.md over 3 years ago