--- 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: 1. Install Git LFS ''' brew install git-lfs ''' 2. Initialize Git LFS in Your Repository ''' git lfs install ''' 3. Track the Binary File Types, for example: ''' git lfs track "*.bmp" ''' 4. Add .gitattributes to Git ''' git add .gitattributes git commit -m "Configure Git LFS to track .bmp files" '''