Skip to content

Instantly share code, notes, and snippets.

View ajwl27's full-sized avatar
🎯
Focusing

ajwl27

🎯
Focusing
View GitHub Profile

Ubuntu 22.04 for Deep Learning

In the name of God

This gist contains steps to setup Ubuntu 22.04 for deep learning.


Install Ubuntu 22.04

@raulqf
raulqf / Install_OpenCV4_CUDA11_CUDNN8.md
Last active July 24, 2024 08:42
How to install OpenCV 4.5 with CUDA 11.2 in Ubuntu 22.04

How to install OpenCV 4.5.2 with CUDA 11.2 and CUDNN 8.2 in Ubuntu 22.04

First of all install update and upgrade your system:

    $ sudo apt update
    $ sudo apt upgrade

Then, install required libraries:

@rotemtam
rotemtam / pascal_to_csv.py
Created April 14, 2018 09:49
pascal voc xml to csv table
import os
import glob
import pandas as pd
import xml.etree.ElementTree as ET
def xml_to_csv(path):
xml_list = []
for xml_file in glob.glob(path + '/*.xml'):
tree = ET.parse(xml_file)