Skip to content
Snippets Groups Projects
home.html 4.62 KiB
Newer Older
  • Learn to ignore specific revisions
  • Mia Wang's avatar
    Mia Wang committed
    {% 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>
    
    Mia Wang's avatar
    Mia Wang committed
    
      <input type="radio" id="dataset2"
    
        name="dataset_selection" value="KMNIST">
      <label for="dataset2">KMNIST dataset</label><br>
    
    Mia Wang's avatar
    Mia Wang committed
    
      <input type="radio" id="dataset3"
    
        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> 
    
    Mia Wang's avatar
    Mia Wang committed
    
    <!-- --------------------------------------------------------------- -->
    
    
      <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>
    
    Mia Wang's avatar
    Mia Wang committed
    
      <input type="radio" id="network2"
    
      name="network_selection" value="EasyNet">
      <label for="network2">EasyNet</label><br>
    
    Mia Wang's avatar
    Mia Wang committed
    
      <input type="radio" id="network3"
    
      name="network_selection" value="SimpleNet">
      <label for="network3">SimpleNet</label><br><br> 
    
    Mia Wang's avatar
    Mia Wang committed
    
    
    
      <h3>Advanced Search</h3>
      <!-- action(data augmentation) space -->
      Which data augmentation method you would like exclude? <br>
    
    Mia Wang's avatar
    Mia Wang committed
        name="action_space" value="ShearX">
    
      <label for="ShearX">ShearX</label>
    
    Mia Wang's avatar
    Mia Wang committed
    
    
    Mia Wang's avatar
    Mia Wang committed
        name="action_space" value="ShearY">
    
      <label for="ShearY">ShearY</label>
    
    Mia Wang's avatar
    Mia Wang committed
    
    
    Mia Wang's avatar
    Mia Wang committed
        name="action_space" value="TranslateX">
    
      <label for="TranslateX">TranslateX</label>
    
    Mia Wang's avatar
    Mia Wang committed
    
    
    Mia Wang's avatar
    Mia Wang committed
      name="action_space" value="TranslateY">
    
      <label for="TranslateY">TranslateY</label>
    
    Mia Wang's avatar
    Mia Wang committed
    
    
    Mia Wang's avatar
    Mia Wang committed
        name="Rotate" value="Rotate">
      <label for="Rotate">Rotate</label><br>
    
    
    Mia Wang's avatar
    Mia Wang committed
      name="action_space" value="Brightness">
    
      <label for="Brightness">Brightness</label>
    
    Mia Wang's avatar
    Mia Wang committed
    
    
    Mia Wang's avatar
    Mia Wang committed
      name="action_space" value="Color">
    
      <label for="Color">Color</label>
    
    Mia Wang's avatar
    Mia Wang committed
    
    
    Mia Wang's avatar
    Mia Wang committed
      name="action_space" value="Contrast">
    
      <label for="Contrast">Contrast</label>
    
    Mia Wang's avatar
    Mia Wang committed
    
    
    Mia Wang's avatar
    Mia Wang committed
      name="action_space" value="Sharpness">
      <label for="Sharpness">Sharpness</label><br>
    
    
    Mia Wang's avatar
    Mia Wang committed
      name="action_space" value="Posterize">
    
      <label for="Posterize">Posterize</label>
    
    Mia Wang's avatar
    Mia Wang committed
    
    
    Mia Wang's avatar
    Mia Wang committed
      name="action_space" value="Solarize">
    
      <label for="Solarize">Solarize</label>
    
    Mia Wang's avatar
    Mia Wang committed
    
    
    Mia Wang's avatar
    Mia Wang committed
      name="action_space" value="AutoContrast">
    
      <label for="AutoContrast">AutoContrast</label>
    
    Mia Wang's avatar
    Mia Wang committed
    
    
    Mia Wang's avatar
    Mia Wang committed
      name="action_space" value="Equalize">
    
      <label for="Equalize">Equalize</label>
    
    Mia Wang's avatar
    Mia Wang committed
    
    
    Mia Wang's avatar
    Mia Wang committed
      name="action_space" value="Invert">
      <label for="Invert">Invert</label><br><br><br>
    
    
    
      <!-- <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>
    
    Mia Wang's avatar
    Mia Wang committed
    
      
    
      <input type="submit">
    </form>
      
    {% endblock %}