Newer
Older
{% extends "basic.html" %}
{% block title%}Home{% endblock %}
{% block body %}
<h1>Meta Reinforcement Learning for Data Augmentation</h1>
<h3>Choose your dataset</h3>
<form action="/user_input">
<!-- upload dataset -->
<label for="dataset_upload">You can upload your dataset here:</label>
<input type="file" name="dataset_upload" class="upload"><br><br>
<!-- dataset radio button -->
Or you can select a dataset from our database: <br>
<input type="radio" id="dataset1"
name="dataset_selection" value="MNIST">
<label for="dataset1">MNIST dataset</label><br>
name="dataset_selection" value="KMNIST">
<label for="dataset2">KMNIST dataset</label><br>
name="dataset_selection" value="FashionMNIST">
<label for="dataset3">FashionMNIST dataset</label><br>
<input type="radio" id="dataset4"
name="dataset_selection" value="CIFAR10">
<label for="dataset4">CIFAR10 dataset</label><br>
<input type="radio" id="dataset5"
name="dataset_selection" value="CIFAR100">
<label for="dataset5">CIFAR100 dataset</label><br><br>
<!-- --------------------------------------------------------------- -->
<h3>Choose the network which the dataset is trained on</h3>
<!-- upload network -->
<label for="network_upload">Please upload your network here:</label>
<input type="file" name="network_upload" class="upload"><br><br>
<!-- network selection -->
Or you can select a dataset from our database: <br>
<input type="radio" id="network1"
name="network_selection" value="LeNet">
<label for="network1">LeNet</label><br>
name="network_selection" value="EasyNet">
<label for="network2">EasyNet</label><br>
name="network_selection" value="SimpleNet">
<label for="network3">SimpleNet</label><br><br>
<h3>Advanced Search</h3>
<!-- action(data augmentation) space -->
Which data augmentation method you would like exclude? <br>
Max Ramsay King
committed
<input type="checkbox" id="ShearX"
Max Ramsay King
committed
<input type="checkbox" id="ShearY"
Max Ramsay King
committed
<input type="checkbox" id="TranslateX"
<label for="TranslateX">TranslateX</label>
Max Ramsay King
committed
<input type="checkbox" id="TranslateY"
<label for="TranslateY">TranslateY</label>
Max Ramsay King
committed
<input type="checkbox" id="Rotate"
name="Rotate" value="Rotate">
<label for="Rotate">Rotate</label><br>
Max Ramsay King
committed
<input type="checkbox" id="Brightness"
<label for="Brightness">Brightness</label>
Max Ramsay King
committed
<input type="checkbox" id="Color"
Max Ramsay King
committed
<input type="checkbox" id="Contrast"
Max Ramsay King
committed
<input type="checkbox" id="Sharpness"
name="action_space" value="Sharpness">
<label for="Sharpness">Sharpness</label><br>
Max Ramsay King
committed
<input type="checkbox" id="Posterize"
Max Ramsay King
committed
<input type="checkbox" id="Solarize"
Max Ramsay King
committed
<input type="checkbox" id="AutoContrast"
<label for="AutoContrast">AutoContrast</label>
Max Ramsay King
committed
<input type="checkbox" id="Equalize"
Max Ramsay King
committed
<input type="checkbox" id="Invert"
name="action_space" value="Invert">
<label for="Invert">Invert</label><br><br><br>
Max Ramsay King
committed
<!-- <div id="exclude_augments" class="dropdown-check-list" tabindex="100">
<span class="anchor">Select data augmentation method(s) to exclude:</span>
<ul class="items">
<input type="checkbox" />Translate
<input type="checkbox" />Rotate
<input type="checkbox" />AutoContrast
<input type="checkbox" />Equalize
<br>
<input type="checkbox" />Solarize
<input type="checkbox" />Posterize
<input type="checkbox" />Contrast
<input type="checkbox" />Brightness
</ul>
</div> -->
<div id="exclude_augments">
<span class="anchor">Hyperparameter (Learning Rate):</span>
<ul class="items">
Automatic: <input type="checkbox" /> <div></div>
Manual: <input type="number" />
</ul>
</div>