Skip to content

Instantly share code, notes, and snippets.

View Denisolt's full-sized avatar

Deni Shakhbulatov Denisolt

  • New York, NY
View GitHub Profile
@Denisolt
Denisolt / convert.py
Last active August 27, 2020 02:49
IBM PowerAI Vision Data Export to TFRecord Converter
"""
tensorflow 2.0.2
Usage: python convert.py --input_path=data/ --image_path=data/ --train_split=0.70 --shuffle_seed=1
"""
import xml.etree.ElementTree as ET
import glob
from tqdm import tqdm
from math import floor
import os
import io