Skip to content

Instantly share code, notes, and snippets.

@jo-tez
jo-tez / coreml_namesDT.py
Created May 8, 2018 20:51
coreml_namesDT.py
import os
import objc_util
from objc_util import ObjCClass, nsurl, ns
'''''''''''''''''
CoreML types
'''''''''''''''''
MLModel = ObjCClass('MLModel')
MLDictionaryFeatureProvider = ObjCClass('MLDictionaryFeatureProvider')
MLFeatureValue = ObjCClass('MLFeatureValue')
@jo-tez
jo-tez / random_numbers2.py
Created July 26, 2017 15:14
random_numbers2.py
import agate
import numpy.random as npr
import isodate
from faker import Factory
random_groups = npr.choice(3, 100, p=[.25, .65, .10])
column_names = ['id', 'name', 'hire_date', 'pb', 'salary']
column_types = [