plooney
plooney
Right now if I do something like # Quantize functional model inputs = tf.keras.Input((3,)) out = tf.keras.layers.Dense(2)(inputs) seq = tf.keras.Sequential() seq.add(tf.keras.layers.Dense(2)) model = tf.keras.Model(inputs, seq(inputs)) quantized_model = quantize_model(model) I get...
Numba doesn't support numpy 1.21 yest so perhaps the requirements need updating to restrict numpy to < 1.21
I have two machines one with multiple GPUs and one with a single GPU. I do something like strategy = tf.distribute.MirroredStrategy() if multi_gpu else tf.distribute.get_strategy() then in training I do...
I'm using a python wrapper I wrote to test some functions. I expect the Hausdorff Distance to be close to 0 but I get nonzero values in Rust.Geo. Converting the...