Text Classification
Transformers
Safetensors
English
distilbert
beginner
tutorial
huggingface-course
sentiment-analysis
text-embeddings-inference
Instructions to use arlette80-laure/huggingface-course-models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use arlette80-laure/huggingface-course-models with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="arlette80-laure/huggingface-course-models")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("arlette80-laure/huggingface-course-models") model = AutoModelForSequenceClassification.from_pretrained("arlette80-laure/huggingface-course-models", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Hugging Face Course Models
Welcome to my first Hugging Face model repository.
This repository was created as part of my learning journey with the Hugging Face Transformers library.
Purpose
The purpose of this repository is to learn how to:
- Create a Hugging Face model repository
- Understand Model Cards
- Save pretrained models
- Upload models to the Hugging Face Hub
- Share models with other users
Model Information
This repository will contain models developed during my Hugging Face course.
Current focus:
- Text Classification
- Sentiment Analysis
- Tokenization
- Transformer Models
Libraries
The models in this repository are built using:
- Transformers
- PyTorch
- Hugging Face Hub
Example
from transformers import pipeline
classifier = pipeline(
"sentiment-analysis"
)
classifier("I love Hugging Face!")
Expected output
POSITIVE
Future Updates
This repository will gradually include:
- Fine-tuned models
- Model weights
- Tokenizers
- Training notebooks
- Example applications
- Documentation
Author
Arlette Laure
Artificial Intelligence with Hugging Face Transformers Course
License
MIT License
- Downloads last month
- -