Phearith's picture
Initial commit: YOLOv8 traffic sign detection model
ceccb67
Raw
History Blame Contribute Delete
945 Bytes
# Path to dataset images
path: /kaggle/input/traffic-sign-detection/dataset
train: ./images/train/
val: ./images/val/
test: ./images/test
# Number of classes
nc: 33
# Class names (GTSRB-style example list you can adjust if needed)
names:
[
'TurnRightAhead',
'NoPassingTrucks',
'DangerousCurveLeft',
'Yield',
'SpeedLimit60',
'EndNoPassingByTrucks',
'EndNoPassing',
'RoundaboutMandatory',
'KeepLeft',
'NoPassing',
'KeepRight',
'RightOfWayCrossing',
'PriorityRoad',
'GoStraightOrLeft',
'Stop',
'NoVehicles',
'VehiclesOver3.5TonsProhibited',
'NoEntry',
'GeneralCaution',
'GoStraightOrRight',
'DangerousCurveRight',
'DoubleCurve',
'BumpyRoad',
'SlipperyRoad',
'RoadNarrowRight',
'RoadWork',
'TrafficSignals',
'Pedestrians',
'ChildrenCrossing',
'BicyclesCrossing',
'AheadOnly',
'WildAnimals',
'TurnLeftAhead'
]