mirror of
https://github.com/ultralytics/yolov5.git
synced 2025-06-03 14:49:29 +08:00
* Add license line to .github/ISSUE_TEMPLATE/bug-report.yml * Add license line to .github/ISSUE_TEMPLATE/config.yml * Add license line to .github/ISSUE_TEMPLATE/feature-request.yml * Add license line to .github/ISSUE_TEMPLATE/question.yml * Add license line to .github/dependabot.yml * Add license line to .github/workflows/ci-testing.yml * Add license line to .github/workflows/cla.yml * Add license line to .github/workflows/codeql-analysis.yml * Add license line to .github/workflows/docker.yml * Add license line to .github/workflows/format.yml * Add license line to .github/workflows/greetings.yml * Add license line to .github/workflows/links.yml * Add license line to .github/workflows/merge-main-into-prs.yml * Add license line to .github/workflows/stale.yml * Add license line to benchmarks.py * Add license line to classify/predict.py * Add license line to classify/train.py * Add license line to classify/val.py * Add license line to data/Argoverse.yaml * Add license line to data/GlobalWheat2020.yaml * Add license line to data/ImageNet.yaml * Add license line to data/ImageNet10.yaml * Add license line to data/ImageNet100.yaml * Add license line to data/ImageNet1000.yaml * Add license line to data/Objects365.yaml * Add license line to data/SKU-110K.yaml * Add license line to data/VOC.yaml * Add license line to data/VisDrone.yaml * Add license line to data/coco.yaml * Add license line to data/coco128-seg.yaml * Add license line to data/coco128.yaml * Add license line to data/hyps/hyp.Objects365.yaml * Add license line to data/hyps/hyp.VOC.yaml * Add license line to data/hyps/hyp.no-augmentation.yaml * Add license line to data/hyps/hyp.scratch-high.yaml * Add license line to data/hyps/hyp.scratch-low.yaml * Add license line to data/hyps/hyp.scratch-med.yaml * Add license line to data/xView.yaml * Add license line to detect.py * Add license line to export.py * Add license line to hubconf.py * Add license line to models/common.py * Add license line to models/experimental.py * Add license line to models/hub/anchors.yaml * Add license line to models/hub/yolov3-spp.yaml * Add license line to models/hub/yolov3-tiny.yaml * Add license line to models/hub/yolov3.yaml * Add license line to models/hub/yolov5-bifpn.yaml * Add license line to models/hub/yolov5-fpn.yaml * Add license line to models/hub/yolov5-p2.yaml * Add license line to models/hub/yolov5-p34.yaml * Add license line to models/hub/yolov5-p6.yaml * Add license line to models/hub/yolov5-p7.yaml * Add license line to models/hub/yolov5-panet.yaml * Add license line to models/hub/yolov5l6.yaml * Add license line to models/hub/yolov5m6.yaml * Add license line to models/hub/yolov5n6.yaml * Add license line to models/hub/yolov5s-LeakyReLU.yaml * Add license line to models/hub/yolov5s-ghost.yaml * Add license line to models/hub/yolov5s-transformer.yaml * Add license line to models/hub/yolov5s6.yaml * Add license line to models/hub/yolov5x6.yaml * Add license line to models/segment/yolov5l-seg.yaml * Add license line to models/segment/yolov5m-seg.yaml * Add license line to models/segment/yolov5n-seg.yaml * Add license line to models/segment/yolov5s-seg.yaml * Add license line to models/segment/yolov5x-seg.yaml * Add license line to models/tf.py * Add license line to models/yolo.py * Add license line to models/yolov5l.yaml * Add license line to models/yolov5m.yaml * Add license line to models/yolov5n.yaml * Add license line to models/yolov5s.yaml * Add license line to models/yolov5x.yaml * Add license line to pyproject.toml * Add license line to segment/predict.py * Add license line to segment/train.py * Add license line to segment/val.py * Add license line to train.py * Add license line to utils/__init__.py * Add license line to utils/activations.py * Add license line to utils/augmentations.py * Add license line to utils/autoanchor.py * Add license line to utils/autobatch.py * Add license line to utils/aws/resume.py * Add license line to utils/callbacks.py * Add license line to utils/dataloaders.py * Add license line to utils/downloads.py * Add license line to utils/flask_rest_api/example_request.py * Add license line to utils/flask_rest_api/restapi.py * Add license line to utils/general.py * Add license line to utils/google_app_engine/app.yaml * Add license line to utils/loggers/__init__.py * Add license line to utils/loggers/clearml/clearml_utils.py * Add license line to utils/loggers/clearml/hpo.py * Add license line to utils/loggers/comet/__init__.py * Add license line to utils/loggers/comet/comet_utils.py * Add license line to utils/loggers/comet/hpo.py * Add license line to utils/loggers/wandb/wandb_utils.py * Add license line to utils/loss.py * Add license line to utils/metrics.py * Add license line to utils/plots.py * Add license line to utils/segment/augmentations.py * Add license line to utils/segment/dataloaders.py * Add license line to utils/segment/general.py * Add license line to utils/segment/loss.py * Add license line to utils/segment/metrics.py * Add license line to utils/segment/plots.py * Add license line to utils/torch_utils.py * Add license line to utils/triton.py * Add license line to val.py * Auto-format by https://ultralytics.com/actions * Update ImageNet1000.yaml Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com> * Auto-format by https://ultralytics.com/actions --------- Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com> Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
120 lines
2.6 KiB
YAML
120 lines
2.6 KiB
YAML
# Ultralytics YOLOv5 🚀, AGPL-3.0 license
|
|
# ImageNet-1k dataset https://www.image-net.org/index.php by Stanford University
|
|
# Simplified class names from https://github.com/anishathalye/imagenet-simple-labels
|
|
# Example usage: python classify/train.py --data imagenet
|
|
# parent
|
|
# ├── yolov5
|
|
# └── datasets
|
|
# └── imagenet100 ← downloads here
|
|
|
|
# Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
|
|
path: ../datasets/imagenet100 # dataset root dir
|
|
train: train # train images (relative to 'path') 1281167 images
|
|
val: val # val images (relative to 'path') 50000 images
|
|
test: # test images (optional)
|
|
|
|
# Classes
|
|
names:
|
|
0: tench
|
|
1: goldfish
|
|
2: great white shark
|
|
3: tiger shark
|
|
4: hammerhead shark
|
|
5: electric ray
|
|
6: stingray
|
|
7: cock
|
|
8: hen
|
|
9: ostrich
|
|
10: brambling
|
|
11: goldfinch
|
|
12: house finch
|
|
13: junco
|
|
14: indigo bunting
|
|
15: American robin
|
|
16: bulbul
|
|
17: jay
|
|
18: magpie
|
|
19: chickadee
|
|
20: American dipper
|
|
21: kite
|
|
22: bald eagle
|
|
23: vulture
|
|
24: great grey owl
|
|
25: fire salamander
|
|
26: smooth newt
|
|
27: newt
|
|
28: spotted salamander
|
|
29: axolotl
|
|
30: American bullfrog
|
|
31: tree frog
|
|
32: tailed frog
|
|
33: loggerhead sea turtle
|
|
34: leatherback sea turtle
|
|
35: mud turtle
|
|
36: terrapin
|
|
37: box turtle
|
|
38: banded gecko
|
|
39: green iguana
|
|
40: Carolina anole
|
|
41: desert grassland whiptail lizard
|
|
42: agama
|
|
43: frilled-necked lizard
|
|
44: alligator lizard
|
|
45: Gila monster
|
|
46: European green lizard
|
|
47: chameleon
|
|
48: Komodo dragon
|
|
49: Nile crocodile
|
|
50: American alligator
|
|
51: triceratops
|
|
52: worm snake
|
|
53: ring-necked snake
|
|
54: eastern hog-nosed snake
|
|
55: smooth green snake
|
|
56: kingsnake
|
|
57: garter snake
|
|
58: water snake
|
|
59: vine snake
|
|
60: night snake
|
|
61: boa constrictor
|
|
62: African rock python
|
|
63: Indian cobra
|
|
64: green mamba
|
|
65: sea snake
|
|
66: Saharan horned viper
|
|
67: eastern diamondback rattlesnake
|
|
68: sidewinder
|
|
69: trilobite
|
|
70: harvestman
|
|
71: scorpion
|
|
72: yellow garden spider
|
|
73: barn spider
|
|
74: European garden spider
|
|
75: southern black widow
|
|
76: tarantula
|
|
77: wolf spider
|
|
78: tick
|
|
79: centipede
|
|
80: black grouse
|
|
81: ptarmigan
|
|
82: ruffed grouse
|
|
83: prairie grouse
|
|
84: peacock
|
|
85: quail
|
|
86: partridge
|
|
87: grey parrot
|
|
88: macaw
|
|
89: sulphur-crested cockatoo
|
|
90: lorikeet
|
|
91: coucal
|
|
92: bee eater
|
|
93: hornbill
|
|
94: hummingbird
|
|
95: jacamar
|
|
96: toucan
|
|
97: duck
|
|
98: red-breasted merganser
|
|
99: goose
|
|
# Download script/URL (optional)
|
|
download: data/scripts/get_imagenet100.sh
|