Martin Görner

Results 19 issues of Martin Görner

Hello I was previously using the box2D Javascript version found here: http://box2d-js.sourceforge.net/ I ported my code to your emscripten generated version. However, I am getting completely inconsistent performance on the...

investigate if this does not have something to do with constant data in the tensorflow graph

Repro snippet: # Please cd into a directory that is NOT your home directory ~ before running tfds.load(name="caltech_birds2011", shuffle_files=True) Result: a directory literally named '~' is created in the current...

bug

Repro snippet: ! Please use your own writable GCS bucket in place of "your_bucket" tfds.load(name="caltech_birds2011", shuffle_files=True, data_dir="gs://your_bucket") Hangs indefinitely with "Extraction completed...: 0% 0/2 [00:21

bug

internally b/242193874 repro code: ``` images = tf.ragged.constant([np.ones(shape=[20,30,3]), # 2 images np.ones(shape=[25,15,3])], ragged_rank=2) print("Images shape:", images.shape) boxes = tf.ragged.constant([[[3,5,15,25], [10,2,12,4], [1,9,7,19]], # 3 boxes [[1,10,24,14], [5,6,14,16]]], ragged_rank=1) # 2 boxes...

object-detection-landing

Repro code: ``` a = tf.ragged.constant([[[1,2,3,4,50], [1,2,3,5,32]], [[0,2,3,6,66], [0,2,3,7,48], [0,2,3,8,47]]], ragged_rank=1) print(tf.shape(a)) kcv.bounding_box.pad_batch_to_shape(a, target_shape=[2, 3, 5]) ``` output: ``` /opt/conda/lib/python3.7/site-packages/keras_cv/bounding_box/pad_batch_to_shape.py in pad_batch_to_shape(bounding_boxes, target_shape, padding_values) 46 """ 47 bounding_box_shape = tf.shape(bounding_boxes)...

type:Bug
object-detection-landing

Repro Colab [here](https://colab.research.google.com/drive/1fi7CRtVzDH9xLTk1g2yae671HONpuppN#scrollTo=_uBFDKhkbriw) Input image size: 360*512px Problem #1: cropping to 128x513 crashes with a div by 0 Problem #2: cropping to 128x514 no longer produces random results (there are...

type:Bug
preprocessing
stat:awaiting keras-eng

Repro colab: https://colab.research.google.com/drive/1QHg0zpFsJS6qfTDfBwts8KLule7B84RO?usp=sharing Requested fix: when exporting a model through jax2tf, weights must be wrapped in tf.Variable before jax2tf is called. Relevant jax2tf documentation: https://github.com/google/jax/blob/main/jax/experimental/jax2tf/README.md#saved-model-with-parameters: _"Some special care is needed...

type:Bug
backend:jax