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)