Skip to content
Snippets Groups Projects
Commit cda58986 authored by Sun Jin Kim's avatar Sun Jin Kim
Browse files

add GenLearner to documentation

parent b751af9e
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,7 @@ class Genetic_learner(AaLearner): ...@@ -20,6 +20,7 @@ class Genetic_learner(AaLearner):
early_stop_num=20, early_stop_num=20,
batch_size=8, batch_size=8,
toy_size=1, toy_size=1,
# GenLearner specific settings
num_offspring=1, num_offspring=1,
): ):
......
from .AaLearner import * from .AaLearner import *
from .RsLearner import * from .RsLearner import *
from .GenLearner import *
from .GruLearner import * from .GruLearner import *
from .EvoLearner import * from .EvoLearner import *
from .UcbLearner import * from .UcbLearner import *
\ No newline at end of file
:mod:`autoaug.autoaugment_learners`.GenLearner
==============================================
.. currentmodule:: autoaug.autoaugment_learners
.. autoclass:: GenLearner
:members:
\ No newline at end of file
...@@ -3,10 +3,11 @@ AutoAugment learners ...@@ -3,10 +3,11 @@ AutoAugment learners
.. toctree:: .. toctree::
:maxdepth: 3 :maxdepth: 3
:caption: autoaugment_learners :caption: AutoAugment Learners
aa_learners/autoaug.autoaugment_learners.AaLearner aa_learners/autoaug.autoaugment_learners.AaLearner
aa_learners/autoaug.autoaugment_learners.EvoLearner aa_learners/autoaug.autoaugment_learners.EvoLearner
aa_learners/autoaug.autoaugment_learners.GenLearner
aa_learners/autoaug.autoaugment_learners.GruLearner aa_learners/autoaug.autoaugment_learners.GruLearner
aa_learners/autoaug.autoaugment_learners.RsLearner aa_learners/autoaug.autoaugment_learners.RsLearner
aa_learners/autoaug.autoaugment_learners.UcbLearner aa_learners/autoaug.autoaugment_learners.UcbLearner
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment