| --- |
| language: es |
| tags: |
| - image-classification |
| - recycling |
| - sustainability |
| license: mit |
| pretty_name: Asignación a contenedores de reciclaje |
| --- |
| |
| # ♻️ Dataset de Reciclaje |
|
|
| Carpetas: |
| - `amarillo/` → plástico/aluminio |
| - `verde/` → vidrio |
| - `azul/` → papel/cartón |
|
|
| ## 📥 Cómo descargar desde Python |
|
|
| ```python |
| from huggingface_hub import hf_hub_download |
| from zipfile import ZipFile |
| |
| zip_path = hf_hub_download( |
| repo_id="Ritz-ai/dataset-reciclaje", |
| filename="Dataset_Reciclaje.zip", |
| repo_type="dataset" |
| ) |
| with ZipFile(zip_path, 'r') as z: |
| z.extractall("/content/Dataset_Reciclaje") |
| ``` |
|
|
| ## 📄 Licencia |
| MIT License. |