rinogeek commited on
Commit
4756011
·
verified ·
1 Parent(s): 1926875

Create README.md

Browse files

# 🌊 AquaClean - YOLOv8 for Aquatic Waste Detection

AquaClean is a custom **YOLOv8-based object detection model** trained to recognize and classify **aquatic waste** such as plastics, bottles, cans, and other debris in marine and freshwater environments.
This project aims to support ocean and river cleaning initiatives by leveraging AI for **environmental monitoring**.

---

## 📌 Model Details
- **Architecture**: YOLOv8 (Ultralytics)
- **Framework**: PyTorch
- **Trained by**: [Marino Atohoun](https://huggingface.co/rinogeek)
- **Dataset**: Custom annotated dataset of aquatic waste (plastics, bottles, bags, cans, etc.)
- **Task**: Object Detection

---

## 🚀 Usage

You can use the model directly with [Ultralytics YOLOv8](https://docs.ultralytics.com/).

```python
from ultralytics import YOLO

# Load model from Hugging Face Hub
model = YOLO("rinogeek/AquaClean")

# Run inference on an image
results = model("sample_image.jpg")

# Show results
results.show()

Files changed (1) hide show
  1. README.md +9 -0
README.md ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - fr
4
+ base_model:
5
+ - Ultralytics/YOLOv8
6
+ pipeline_tag: object-detection
7
+ tags:
8
+ - climate
9
+ ---