Skip to content
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

Addition of ShuffleNet Model in the "Model" option of the site. #14

Open
Heril18 opened this issue Oct 20, 2022 · 0 comments
Open

Addition of ShuffleNet Model in the "Model" option of the site. #14

Heril18 opened this issue Oct 20, 2022 · 0 comments
Labels
Easy Difficulty Level enhancement New feature or request good first issue Good for newcomers

Comments

@Heril18
Copy link
Collaborator

Heril18 commented Oct 20, 2022

Addition of ShuffleNet Model in the "Model" option of the site.

Task - Setting up of ShuffleNet 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 - 'shufflenet_v2_x1_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>shufflenet_v2_x1_0</option>
  </select>

@Heril18 Heril18 added enhancement New feature or request good first issue Good for newcomers Easy Difficulty Level labels Oct 20, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Easy Difficulty Level enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant