Giter VIP home page Giter VIP logo

Comments (28)

Ram81 avatar Ram81 commented on July 22, 2024 1

@virajprabhu sure I will setup IDE and let you know if I need some help πŸ‘

from fabrik.

muddlebee avatar muddlebee commented on July 22, 2024

https://gist.github.com/jimmie33/7ea9f8ac0da259866b854460f4526034

This is working for me. @dexter1691

screenshot from 2017-02-12 02 16 02
screenshot from 2017-02-12 02 15 47

Edit : Ohh I just checked this has already been tested. present in examples/ folder.

from fabrik.

dexter1691 avatar dexter1691 commented on July 22, 2024

Nice! Let's maintain a list of the one's that working and the ones that are not working. GoogleNet was already part of the ones that we used to check.

Let's keep trying others to find out the ones that are not working. I am sure there will be a few!

from fabrik.

muddlebee avatar muddlebee commented on July 22, 2024

https://gist.github.com/jimgoo/0179e52305ca768a601f Not working.

Edit: This should work. All models are present itself.

from fabrik.

kris-singh avatar kris-singh commented on July 22, 2024

I would like to work on this

from fabrik.

virajprabhu avatar virajprabhu commented on July 22, 2024

@anweshknayak Are you sure we have front-end support for all layers in the prototxt?

@kris-singh Great, can you start with simple classification models like AlexNet and VGGNet?

Would be great if either of you could try out a ResNet (it won't work at the moment) and open an issue with the layers that we are missing. This task would also give you a good overall picture of this project's current status.

Edit: I see @dexter1691 has already opened an issue for Resnets in #31. Could we confirm that the layers he listed are the only ones we are missing front-end support for?

from fabrik.

Ram81 avatar Ram81 commented on July 22, 2024

@virajprabhu I am interested in this one can you guide me?

from fabrik.

virajprabhu avatar virajprabhu commented on July 22, 2024

@Ram81 Great. Have you set up IDE and tried importing the example prototxt file for GoogLenet? We similarly want to be able to import a wide variety of prototxt files from the Caffe Model Zoo. For that, we may need to add front-end support for more Caffe layers. As a concrete starting point, can you try importing classification CNN models like AlexNet / VGGNet / ResNet and verify that they work (by commenting on this thread) / identify which layers are missing and open an issue for the same?

from fabrik.

utsavgarg avatar utsavgarg commented on July 22, 2024

@virajprabhu I am also interested in trying out classification networks if any hasn't been implemented yet

from fabrik.

utsavgarg avatar utsavgarg commented on July 22, 2024

@dexter1691
AlexNet from Caffe Model Zoo loads fine, but the 'Group' parameters present in conv layers are ignored.
https://github.com/BVLC/caffe/blob/master/models/bvlc_alexnet/deploy.prototxt
alexnet
VGG-16 present in Caffe Model Zoo is for an older Caffe version, I updated the prototxt to support the newer Caffe version and it loads fine now.
https://gist.github.com/utsavgarg/e3982498e9fb27d882cf877e7992ec9b
vgg

from fabrik.

Omarito2412 avatar Omarito2412 commented on July 22, 2024

Squeezenet

squeeze

from fabrik.

Omarito2412 avatar Omarito2412 commented on July 22, 2024

RCNN
2

from fabrik.

utsavgarg avatar utsavgarg commented on July 22, 2024

Network in Network
nin

from fabrik.

virajprabhu avatar virajprabhu commented on July 22, 2024

@utsavgarg @Omarito2412 Thanks for reporting these, and opening issues for the ones that don't work! If you would like to work on adding support to any of the ones that don't work, post on the issue thread and I'll assign it to you. Feel free to ping the Gitter channel / comment if you need any help setting up or would like to discuss the implementation.

from fabrik.

Omarito2412 avatar Omarito2412 commented on July 22, 2024

@virajprabhu I would like to work on adding support for S2VT network #36

from fabrik.

virajprabhu avatar virajprabhu commented on July 22, 2024

@Omarito2412 Sounds good. Please go ahead, and let me know if you need help.

from fabrik.

Ram81 avatar Ram81 commented on July 22, 2024

@virajprabhu which one should I try can you suggest one?

from fabrik.

prasadwajekar avatar prasadwajekar commented on July 22, 2024

I would like to work on this...

from fabrik.

AhmedAbdulKarim avatar AhmedAbdulKarim commented on July 22, 2024

how to be assigned to this?

from fabrik.

virajprabhu avatar virajprabhu commented on July 22, 2024

@prasadwajekar @AhmedAbdulKarim You can try importing popular models from the Caffe Model Zoo, and comment on this thread with the status (success/fail). If it fails and you'd like to add support for the missing layer(s) required to get it to work, please submit a PR!

from fabrik.

Ram81 avatar Ram81 commented on July 22, 2024

@virajprabhu @utsavgarg "ResNets: Deep Residual Networks from MSRA at ImageNet and COCO 2015" doesn't currently get loaded in fabrik can I add support for it?

from fabrik.

utsavgarg avatar utsavgarg commented on July 22, 2024

@Ram81 ResNet-101 is already there in the Fabrik Zoo and it loads fine. Which model were you trying ?
image

from fabrik.

Ram81 avatar Ram81 commented on July 22, 2024

@utsavgarg I tried ResNet-101-deploy.prototxt from https://github.com/KaimingHe/deep-residual-networks/tree/master/prototxt

from fabrik.

utsavgarg avatar utsavgarg commented on July 22, 2024

@Ram81 you will need to change the format of the input layer in that prototxt.

from fabrik.

Ram81 avatar Ram81 commented on July 22, 2024

Okay understood I'll try and find which one doesn't work & ask further

from fabrik.

Ram81 avatar Ram81 commented on July 22, 2024

@utsavgarg should I also report which one already works so that we can add it to Fabrik/Zoo?

from fabrik.

JPJPJPOPOP avatar JPJPJPOPOP commented on July 22, 2024

These two don't work due to being in the old Caffe format:
https://github.com/RankingCNN/Using-Ranking-CNN-for-Age-Estimation/blob/master/basic_16to66/deploy_basic.prototxt
https://gist.github.com/mavenlin/d802a5849de39225bcc6#file-train_val-prototxt

Will try updating them to see if they work.

from fabrik.

JPJPJPOPOP avatar JPJPJPOPOP commented on July 22, 2024

Finished updating both:
RankingCNN: https://gist.github.com/JPJPJPOPOP/6ed94b737a45da81fbc55ce912d6da2a

NINImageNet: https://gist.github.com/JPJPJPOPOP/b8d9f5a1c4cd1bbe624f664f1b85d9bb

from fabrik.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.