"src/include/ConstantMergedTensorDescriptor.hpp" did not exist on "2a48812edb1a7c3e280159637fa89b7a0bbfb86b"
Unverified Commit 2ca227f8 authored by Yuge Zhang's avatar Yuge Zhang Committed by GitHub
Browse files

Support sphinx v4 (#3622)

parent 78d37a3e
...@@ -10,9 +10,7 @@ Tuner receives metrics from `Trial` to evaluate the performance of a specific pa ...@@ -10,9 +10,7 @@ Tuner receives metrics from `Trial` to evaluate the performance of a specific pa
:maxdepth: 1 :maxdepth: 1
Overview <Tuner/BuiltinTuner> Overview <Tuner/BuiltinTuner>
TPE <Tuner/HyperoptTuner> TPE / Random Search / Anneal <Tuner/HyperoptTuner>
Random Search <Tuner/HyperoptTuner>
Anneal <Tuner/HyperoptTuner>
Naive Evolution <Tuner/EvolutionTuner> Naive Evolution <Tuner/EvolutionTuner>
SMAC <Tuner/SmacTuner> SMAC <Tuner/SmacTuner>
Metis Tuner <Tuner/MetisTuner> Metis Tuner <Tuner/MetisTuner>
......
...@@ -201,4 +201,4 @@ extlinks = { ...@@ -201,4 +201,4 @@ extlinks = {
# -- Extension configuration ------------------------------------------------- # -- Extension configuration -------------------------------------------------
def setup(app): def setup(app):
app.add_stylesheet('css/custom.css') app.add_css_file('css/custom.css')
sphinx>=3.3.1 sphinx>=4.0
sphinx-argparse sphinx-argparse
sphinx-rtd-theme sphinx-rtd-theme
sphinxcontrib-websupport sphinxcontrib-websupport
......
...@@ -225,7 +225,7 @@ class NetworkMorphismTuner(Tuner): ...@@ -225,7 +225,7 @@ class NetworkMorphismTuner(Tuner):
---------- ----------
other_info: any object other_info: any object
In our case it is the father ID in the search tree. In our case it is the father ID in the search tree.
graph: Graph graph: graph.Graph
An instance of Graph. The trained neural architecture. An instance of Graph. The trained neural architecture.
metric_value: float metric_value: float
The final evaluated metric value. The final evaluated metric value.
...@@ -284,7 +284,7 @@ class NetworkMorphismTuner(Tuner): ...@@ -284,7 +284,7 @@ class NetworkMorphismTuner(Tuner):
Returns Returns
------- -------
load_model : Graph load_model : graph.Graph
the model graph representation the model graph representation
""" """
...@@ -300,7 +300,7 @@ class NetworkMorphismTuner(Tuner): ...@@ -300,7 +300,7 @@ class NetworkMorphismTuner(Tuner):
Returns Returns
------- -------
load_model : Graph load_model : graph.Graph
the model graph representation the model graph representation
""" """
return self.load_model_by_id(self.get_best_model_id()) return self.load_model_by_id(self.get_best_model_id())
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment