-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Labels
EasyDifficulty LevelDifficulty LevelenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Addition of SqueezeNet Model in the "Model" option of the site.
Task - Setting up of SqueezeNet Model in the source code and adding it to the Dropdown list under the "Model" option on the main website.
Difficulty Level: Easy
Steps to be followed -
- Go to the template folder.
- To every HTML file present in the folder, add the exact respective torch library model name, for example - 'squeezenet1_0' (in this case), to the "form-control" class having id as "model", this will be the dropdown list on the main website.
- Search for the model name according to the Torch Library and include the exact name assigned by the Torch Library for the model to get successfully loaded.
- The final function should be of the following framework -
<select class="form-control" id="model" name="model">
<option>alexnet</option>
<option>resnet18</option>
<option>vgg16</option>
<option>googlenet</option>
<option>mobilenet_v2</option>
<option>squeezenet1_0</option>
</select>
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
EasyDifficulty LevelDifficulty LevelenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers