Skip to content

Instantly share code, notes, and snippets.

View iaverypadberg's full-sized avatar

Isaac Padberg iaverypadberg

View GitHub Profile
@iaverypadberg
iaverypadberg / ssd_mobilenet training on ubuntu 20.04-with gpu - conda & pip.MD
Last active May 10, 2022 15:47
ssd_mobilenet training on ubuntu 20.04-with gpu - conda & pip

Configuring a tensorflow environment to work with gpu's is really annoying. Thankfully, conda & pipmake it a lot less annoying.

Here are the core dependencies for getting this to work.

  • cudatoolkit=11.6.0
  • cudnn=8.2.1.32
  • tensorflow=2.7.0
  • tensorflow-gpu=2.7.0
  • tensorflow-io=0.25.0
  • python=3.9
@Amir22010
Amir22010 / convert_voc_to_yolo.md
Created February 22, 2020 22:01 — forked from myounus96/convert_voc_to_yolo.md
convert pascal voc dataset to yolo format

Convert PascalVOC Annotations to YOLO

This script reads PascalVOC xml files, and converts them to YOLO txt files.

Note: This script was written and tested on Ubuntu. YMMV on other OS's.

Disclaimer: This code is a modified version of Joseph Redmon's voc_label.py

Instructions:

  1. Place the convert_voc_to_yolo.py file into your data folder.