Lesson2FastAi / README.md
RamyKhorshed's picture
Upload README.md with huggingface_hub
321cccd verified
|
raw
history blame
396 Bytes

FastAI Model

This model was trained using FastAI and deployed to Hugging Face.

Usage

from fastai.learner import load_learner
from huggingface_hub import hf_hub_download

# Download the model
model_path = hf_hub_download(repo_id="RamyKhorshed/Lesson2FastAi", filename="model.pkl")
model = load_learner(model_path)

# Make predictions
# prediction = model.predict(your_input)