Martin Görner
Martin Görner
thanks for your answer. Do you have a bug report link so that I can find the collegues working on this and follow up on progress ? Thanks Martin 2012/10/31...
quick workaround: wrap one of the models in tf.keras.Sequential([model], name="new_name"). That will resolve the naming issue.
Hmm, interesting... I will have to investigate this one. Thanks for reporting the issue.
This looks like a Python 2 / Python 3 discrepancy but theoretically "".format() works in Pyhon 2.7. i do not have an immediate answer. I will have to test under...
@mahmood431226 it is because on a mini-batch of input images, you get one loss per image. The loss is supposed to be a single scalar though so you average them.
thanks for reporting this. I am looking into it.
thanks for reporting. I'm looking into this.
Yes you can do that but it will complete your sentence in Shakespeare style. The starting character is in: x = my_txtutils.convert_from_alphabet(ord("L")) y=x If you want to start from a...
Toughts: - Please make sure the min and max zoom values have the same meaning as in Model Garden's [implementation](https://github.com/tensorflow/models/blob/d6dc57adc2ba942b4e08965721f63bad7231bb8a/official/vision/ops/preprocess_ops.py#L134) where they are called aug_scale_min and aug_scale_max - An edge...
you cannot clip crop_resize without introducing image distorsions. Remember that the final image size is fixed for all images which also means a fixed aspect ratio. If you clip crop_resize...