-
Notifications
You must be signed in to change notification settings - Fork 45.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DenseNets in Tensorflow #8278
Comments
Hi Eshan-Agarwal, |
@saberkun Thanks and okay. |
@Eshan-Agarwal If you are interested ina a Tensorflow2 impl https://github.com/okason97/DenseNet-Tensorflow2 /cc @okason97 |
@bhack thank you so much it will help. |
Not to be rude @saberkun, but the reasoning that "keras.applications has DenseNet so there's no need to reimplement it" seems like a pretty weak argument. ResNet and ResNet_v2 are both implemented in keras.applications but tensorflow/models also has an implementation which IMO is more flexible but not as easy to use. To be fair, ResNets are much more popular than DenseNets. But at the same time, I do think a more flexible version of DenseNets (as well as less popular models) would be useful for people who have more varied use cases. For example, one could not just use the DenseNet provided in Keras directly to train for CIFAR, even though the original paper does (because the first couple of layers are different). BTW, would be happy to contribute if its OK! |
Hi @srilman, the official models cost more to maintain. We are in progress to build general vision modeling libraries. I think it would be chance to have DenseNet empowered by the library as we also want to bridge the existing object detection and slim model zoo. Defer to @jaeyounkim for the detailed plan. |
@srilman I've added a "community suggestion" label to this issue to keep tracking suggestions from the community. We will welcome more contributions for new models once we release our new modeling library for computer vision. We will share our roadmap with the community soon. Please check our contribution guidelines for paper code for the time being. |
@jaewoosong Are you closing the issues tagged as "community suggestion" or just this one? |
I am going to close all the issues labelled as "community suggestion" because I will be tracking "community suggestion" issues separately and review them monthly. Feel free to reopen it if you have more suggestions. |
If it is for an internal review plan it is ok but it could generate duplication cause I think that users will not check closed ticket so often. |
@bhack I've created a new issue to list all requests for paper implementation. Please create a new issue if you want to request for other paper implementations after checking our model selection criteria. |
Is TensorFlow have
DenseNet
architecture like othersResNet
etc. Can I addDenseNet
architecture inTensorflow/Models
. I previously worked on it. Or just load it usingkeras
as TF supports keras.The text was updated successfully, but these errors were encountered: