| # 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' | |
| ] | |