keras-resnet icon indicating copy to clipboard operation
keras-resnet copied to clipboard

Keras package for deep residual networks

Results 33 keras-resnet issues
Sort by recently updated
recently updated
newest added

``` find . -iname '*.py' | grep -Ev 'vendor|example|doc|tools|sphinx' | xargs -P4 -I{} python3.8 -Wall -m py_compile {} ./keras_resnet/benchmarks/__init__.py:74: SyntaxWarning: "is" with a literal. Did you mean "=="? if benchmark...

The newest keras version allow us to save models not only as .h5 keras files, but also as saved model. However, custom layers must be correctly declared to support this....

Hey, I am using conda for my development but I could not install keras-resnet using `conda install keras-resnet`. So I was thinking, could you add keras-resnet as a conda package?...

Hi @0x00b1, when I was trying to load the saved resnet18, got the error: "ResNet18' object has no attribute 'load' . Can we have the load function implemented?

The network architecture in 0.2.0 is no longer identical to that in the original Caffe implementation. I am using the ResNet50 imagenet weights available [here](https://github.com/fizyr/keras-models/releases), which were generated using the...

I realized that while the master branch includes a 1DResnet, the latest release does not. This has led to confusion among users (namely, myself) as I'm not in a position...

If one wants to have two ResNets in the same model it doesn't seem to be possible since the two ResNets will have layers with the same name. It could...