In the name of God
This gist contains steps to setup Ubuntu 22.04 for deep learning.
| 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) |