class_index | class_name |
---|---|
0 | person |
1 | bicycle |
2 | car |
3 | motorcycle |
4 | airplane |
5 | bus |
6 | train |
7 | truck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-get install -y python3.8 python3.8-dev | |
wget https://files.pythonhosted.org/packages/b7/2d/ad02de84a4c9fd3b1958dc9fb72764de1aa2605a9d7e943837be6ad82337/pip-21.0.1.tar.gz | |
tar -xzvf pip-21.0.1.tar.gz | |
cd pip-21.0.1 | |
python3.8 setup.py install | |
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0 | person | |
---|---|---|
1 | bicycle | |
2 | car | |
3 | motorcycle | |
4 | airplane | |
5 | bus | |
6 | train | |
7 | truck | |
8 | boat | |
9 | traffic light |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"class": { | |
"0": "person", | |
"1": "bicycle", | |
"2": "car", | |
"3": "motorcycle", | |
"4": "airplane", | |
"5": "bus", | |
"6": "train", | |
"7": "truck", |