- For Setup instructions, look at the README.
- Add the new model as a .prototxt file to the Example/Caffe folder.
- Then add your entry to the front-end by refering to the following example in modelZoo.js, in this the
id
should be the name of your prototxt without the extension.
<li><ModelElement importNet={this.props.importNet} framework="caffe" id="sample">Sample</ModelElement></li>
- After making these changes, test if loading the model and exporting it to both or at least one framework is working fine and document it accordingly in your pull request.
- Add a thumbnail image for displaying a preview of the new model.
- Add the new model to Tested Models.
- Create a pull request for the same and get reviewed by the mentors. Cheers!
- For Setup instructions, look at the README.
- Add the new model as a .json file to the Example/Keras folder.
- Then add your entry to the front-end by refering to the following example in modelZoo.js, in this the
id
should be the name of your json without the extension.
<li><ModelElement importNet={this.props.importNet} framework="keras" id="Sample">sample</ModelElement></li>
- After making these changes, test if loading the model and exporting it to both or at least one framework is working fine and document it accordingly in your pull request.
- Add a thumbnail image for displaying a preview of the new model.
- Add the new model to Tested Models.
- Create a pull request for the same and get reviewed by the mentors. Cheers!