Spaces:
Sleeping
A newer version of the Gradio SDK is available:
5.29.0
title: Plastic Pellet
emoji: 🏢
colorFrom: yellow
colorTo: pink
sdk: gradio
sdk_version: 4.44.0
app_file: app.py
pinned: false
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
The dataset used during the training is also uploaded to HUgging Face here: https://huggingface.co/datasets/trifork/plastic-pellets
To successfully push binary image files or models to your Hugging Face repository, you'll need to use Git Large File Storage (Git LFS). Git LFS is designed to handle large files by storing them separately from your main Git repository, which prevents issues like the one you're encountering. To do that you have to:
Install Git LFS ''' brew install git-lfs '''
Initialize Git LFS in Your Repository ''' git lfs install '''
Track the Binary File Types, for example: ''' git lfs track "*.bmp" '''
Add .gitattributes to Git ''' git add .gitattributes git commit -m "Configure Git LFS to track .bmp files" '''