docs/en/platform/explore.md
Ultralytics Platform Explore page showcases public content from the community. Discover datasets and projects for inspiration and learning. The Explore page is accessible to everyone — even without signing in.
graph LR
A[🔍 Browse Explore] --> B[📥 Clone to Account]
B --> C[✏️ Customize & Annotate]
C --> D[🚀 Train Model]
D --> E[🌐 Deploy Endpoint]
style A fill:#4CAF50,color:#fff
style B fill:#2196F3,color:#fff
style C fill:#FF9800,color:#fff
style D fill:#9C27B0,color:#fff
style E fill:#E91E63,color:#fff
!!! info "Anonymous Access"
The Explore page works without signing in. Anonymous users see official Ultralytics content in the sidebar under "Ultralytics" instead of "My Projects". To clone content or create your own, you'll need to sign up.
The Explore page features two tabs:
Official Ultralytics content (e.g., @ultralytics projects and datasets) is pinned to the top of results.
The Explore page uses a tabbed interface with Datasets and Projects tabs. Each tab has its own search, sort, and view mode controls.
| Tab | Description |
|---|---|
| Datasets | Labeled image collections for training (default) |
| Projects | Organized model collections with training results |
Each tab provides a search bar and sort options:
| Sort Option | Description |
|---|---|
| Most Starred | Content with most community stars (default) |
| Newest | Most recently created |
| Oldest | Oldest first |
| Name A-Z | Alphabetical ascending |
| Name Z-A | Alphabetical descending |
| Most images | Most images (datasets) or models (projects) |
| Fewest images | Fewest images (datasets) or models (projects) |
Toggle between three view modes for browsing:
| Mode | Description |
|---|---|
| Cards | Grid of preview cards with thumbnails |
| Compact | Smaller cards in a responsive grid (2-3 columns) |
| Table | Sortable table with columns |
Cards and compact views support infinite scroll for loading more results.
Each item displays:
=== "Project Cards"
| Element | Description |
| -------------------- | ------------------------------------------------------------- |
| **Icon** | Project icon with custom colors |
| **Name** | Project title |
| **Creator** | Author avatar and username |
| **Description** | Short project description |
| **Model Count** | Number of models in the project |
| **Model Tags** | Names of models in the project |
| **Visibility Badge** | Public or private indicator (shows lock icon for private) |
| **Star Count** | Number of community stars |
=== "Dataset Cards"
| Element | Description |
| -------------------- | ------------------------------------------------------------- |
| **Thumbnails** | Preview images from the dataset |
| **Name** | Dataset title |
| **Creator** | Author avatar and username |
| **Task Badge** | YOLO task type (detect, segment, etc.) |
| **Image Count** | Number of images in the dataset |
| **Visibility Badge** | Public or private indicator (shows lock icon for private) |
| **Star Count** | Number of community stars |
graph TD
A[Find Content on Explore] --> B{Content Type}
B --> C[Dataset]
B --> D[Project]
B --> E[Model]
C --> F[Clone Dataset]
D --> G[Clone Project]
E --> H[Download Model]
E --> I[Clone Model]
F --> J[Private Copy in Your Account]
G --> K[Private Copy with All Models]
H --> L[.pt / ONNX / Other Formats]
I --> M[Copy to Your Project]
J --> N[Edit, Annotate, Train]
K --> N
M --> N
Use a public dataset for your training:
Clone Dataset!!! note "Cloned Dataset Properties"
- Cloned datasets are **private by default**
- You can modify classes, annotations, and splits
- Changes don't affect the original dataset
- Images are deduplicated using content-addressable storage (CAS) — cloning is fast and **does not double your storage usage**
See Datasets for managing and annotating your cloned dataset.
Download a public model:
You can also use the model for inference or as a starting point for fine-tuning:
# Use a downloaded model for inference
yolo predict model=path/to/downloaded-model.pt source=image.jpg
# Fine-tune on your own dataset
yolo train model=path/to/downloaded-model.pt data=my-dataset.yaml epochs=50
Clone a public model to one of your projects:
Clone ModelClone Model to confirm!!! note "Clone vs Download"
**Clone** copies the model to a project on the Platform for further training or deployment. **Download** saves the model file to your local machine.
Copy a public project to your workspace:
Clone ProjectSee Projects for organizing models in your project.
Official @ultralytics content is pinned to the top of the Explore page. This includes:
| Project | Description | Models | Tasks |
|---|---|---|---|
| YOLO26 | Latest January 2026 release | 25 models (5 sizes × 5 tasks) | detect, segment, pose, OBB, classify |
| YOLO11 | Current stable release | 25 models (5 sizes × 5 tasks) | detect, segment, pose, OBB, classify |
| YOLOv8 | Previous generation | 20+ models (5 sizes × 4 tasks) | detect, segment, pose, classify |
| YOLOv5 | Legacy, widely adopted | 15+ models | detect, segment, classify |
Official datasets include benchmark datasets like coco8 (8-image COCO subset), VOC, african-wildlife, dota8, and other commonly used computer vision datasets.
!!! tip "Quick Start with Official Models"
The fastest way to get started is to clone an official Ultralytics project and use a pretrained model to train on your own dataset:
1. Go to `Explore` > `Projects` tab
2. Find the **YOLO26** project from `@ultralytics`
3. Clone it to your account
4. Upload your dataset in [supported formats](data/datasets.md#preparing-your-dataset) and start training with a pretrained checkpoint
Click on a creator's username to view their public profile at platform.ultralytics.com/{username}. Public profiles show:
| Section | Content |
|---|---|
| Bio | User description and company |
| Links | Social profiles |
| Followers | Follower count |
| Projects | Public projects with models |
| Datasets | Public datasets |
Click the Follow button on any user's profile to follow them. Following helps you discover new content from creators you're interested in. Your follower count is displayed on your profile.
Make your work available to the community. Public content appears on the Explore page and is visible to everyone, including users who aren't signed in.
graph LR
A[Your Private Content] --> B[Edit Settings]
B --> C[Set Visibility: Public]
C --> D[Appears on Explore Page]
D --> E[Community Can Clone/Download]
EditPublicSaveEditPublicSave!!! tip "Quality Content"
Before making content public:
- Add a clear, descriptive name and description
- Define class names in the dataset settings
- Verify data quality and annotation accuracy
- Test model performance and include training metrics
!!! warning "Public Content Visibility"
Public content is visible to **everyone on the internet**, including anonymous users. Make sure your dataset doesn't contain sensitive, private, or copyrighted data before making it public. You can change visibility back to private at any time.
When contributing public content:
Click the Share button on any public project, model, or dataset to share it. The share dialog provides pre-filled text for social platforms and a direct copy link.
Public content can be embedded in external websites using embed URLs:
| Content | Embed URL Pattern |
|---|---|
| Project | platform.ultralytics.com/embed/{username}/{project} |
| Model | platform.ultralytics.com/embed/{username}/{project}/{model} |
| Dataset | platform.ultralytics.com/embed/{username}/datasets/{slug} |
Use these URLs in an <iframe> to embed interactive project views, model prediction widgets, or dataset viewers on your website.
Public content on the platform uses clean, shareable URLs:
| Content | URL Pattern | Example |
|---|---|---|
| Profile | platform.ultralytics.com/{username} | platform.ultralytics.com/ultralytics |
| Datasets | platform.ultralytics.com/{username}/datasets | platform.ultralytics.com/ultralytics/datasets |
| Dataset | platform.ultralytics.com/{username}/datasets/{slug} | platform.ultralytics.com/ultralytics/datasets/coco |
| Project | platform.ultralytics.com/{username}/{project} | platform.ultralytics.com/ultralytics/yolo26 |
| Model | platform.ultralytics.com/{username}/{project}/{model} | platform.ultralytics.com/ultralytics/yolo26/yolo26n |
!!! tip "Shareable Links"
You can share any public content URL directly. Recipients can view the content without signing in. To clone or download, they'll need an account.
Check individual content licenses. Most community content is for:
Contact creators for commercial licensing.
To report inappropriate content:
If the content is no longer accessible, use the Help page from any page and include as much detail as possible (URL, username, or description).
Our team reviews reports within 24-48 hours.
Yes, you can change visibility anytime:
Existing clones are not affected.
Featured content is selected based on:
There's no application process - just create great content!