Skip to content

Commit 7d37a82

Browse files
add link to document
1 parent 7268687 commit 7d37a82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

machine-learning/Parameter and SearchSpace.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
}
99
},
1010
"source": [
11-
"In AutoML.Net, `SearchSpace` defines the hyper-parameter searching range of a sweepable pipeline or a sweepable estimator and `Parameter` is the sampled result from a `SearchSpace`, which can be used to restore an estimator or a pipeline.\n",
11+
"In AutoML.Net, [`SearchSpace`](https://docs.microsoft.com/en-us/dotnet/api/microsoft.ml.searchspace.searchspace?view=ml-dotnet-preview) defines the hyper-parameter searching range of a sweepable pipeline or a sweepable estimator and [`Parameter`](https://docs.microsoft.com/en-us/dotnet/api/microsoft.ml.searchspace.parameter?view=ml-dotnet-preview) is the sampled result from a `SearchSpace`, which can be used to restore an estimator or a pipeline.\n",
1212
"\n",
1313
"`SearchSpace` has a great impact on automl performance. In theory, it decides the upper-bound of an automl model. A larger `SearchSpace` usually means an increasing potential of finding a better model. In practice though, there's also a trade-off and a larger `SearchSpace` doesn't always to be better considering the increasing searching complexity and higher training cost.\n",
1414
"\n",
@@ -109,6 +109,7 @@
109109
"using Microsoft.ML.Data;\n",
110110
"using Microsoft.ML.SearchSpace;\n",
111111
"using Newtonsoft.Json;\n",
112+
"using Microsoft.ML.AutoML.CodeGen;\n",
112113
"using Microsoft.ML.SearchSpace.Option;"
113114
]
114115
},
@@ -254,7 +255,6 @@
254255
}
255256
],
256257
"source": [
257-
"using Microsoft.ML.AutoML.CodeGen;\n",
258258
"var lgbmSearchSpace = new SearchSpace<LgbmOption>();\n",
259259
"\n",
260260
"// the default option for NumberOfLeaves is (4, 32768, logBase: true)\n",

0 commit comments

Comments
 (0)