Mohammed Innat

Results 192 comments of Mohammed Innat

It's been asked. https://github.com/keras-team/keras-cv/issues/917 @LukeWood could you please move above ticket here in kcv? And also these https://github.com/keras-team/keras/issues/15267 https://github.com/keras-team/keras/issues/15268 https://github.com/keras-team/keras/issues/15816

Updating. https://github.com/divamgupta/stable-diffusion-tensorflow/pull/14

To inference on raw samples. In `test_errnet.py`, right after line 17, commented rest of the part. And put below code ``` engine = Engine(opt) test_ref_dataset = datasets.RealDataset('/content/my_img/') # where you...

@rchao Thanks for asking. Replying to all your requests, [#15267](https://github.com/keras-team/keras/issues/15267), [#15268](https://github.com/keras-team/keras/issues/15268), [#15269](https://github.com/keras-team/keras/issues/15269), [#15270](https://github.com/keras-team/keras-cv/issues/917) There is nothing new additional argument for justification I could use compared to the arguments that apply...

@rchao Could you please give some feedback on this?

@rchao Thanks for the response. For citation, I think it's not required to state the citation count for Issue [#15269](https://github.com/keras-team/keras/issues/15269) as we have already `ResNet 50/101`. However, - For [`SENet`](https://github.com/hujie-frank/SENet?utm_source=catalyzex.com#trained-models)...

@rchao yes, (afaik) they do. [Here](https://github.com/qubvel/classification_models) is the third-party implementation, and here is the list of [imagenet weights](https://github.com/qubvel/classification_models/releases/tag/0.0.1).

**Case 2** It's not only limited to `Sequential API` but also some cases with `Functional API`. See another example below. ```python inputs = keras.Input(shape=IMG_SHAPE) x = pretrained_model(inputs) x = keras.layers.Dense(512,...