Skip to content

Instantly share code, notes, and snippets.

View rcland12's full-sized avatar
😭

Russell Land rcland12

😭
View GitHub Profile
@rcland12
rcland12 / install.sh
Created September 1, 2023 05:31
Install Python3.8 on Jetson Nano (run with sudo)
#!/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
@rcland12
rcland12 / yolo_classes.csv
Created July 14, 2023 04:09
A list of all 80 YOLO classes and its index in CSV format.
0 person
1 bicycle
2 car
3 motorcycle
4 airplane
5 bus
6 train
7 truck
8 boat
9 traffic light
@rcland12
rcland12 / yolo_classes.json
Created July 14, 2023 04:08
A list of all 80 YOLO classes and its index in JSON format.
{
"class": {
"0": "person",
"1": "bicycle",
"2": "car",
"3": "motorcycle",
"4": "airplane",
"5": "bus",
"6": "train",
"7": "truck",
@rcland12
rcland12 / yolo_classes.md
Last active July 14, 2023 03:57
A list of all 80 YOLO classes and its index.
class_index class_name
0 person
1 bicycle
2 car
3 motorcycle
4 airplane
5 bus
6 train
7 truck