We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aae6d2 commit dcddf57Copy full SHA for dcddf57
mlflow/examples/NeuralNetworkHyperparameterTuning.js
@@ -7,9 +7,9 @@ const mlflow = new MLflow('http://localhost:5001');
7
8
const HYPERPARAMETER_SPACE = {
9
networkArchitectures: [
10
- [16, 8],// Small network
11
- [32, 16],// Medium network
12
- [64, 32],// Larger network
+ [16, 8],
+ [32, 16],
+ [64, 32],
13
],
14
learningRates: [0.001, 0.01],
15
batchSizes: [32, 64],
@@ -23,7 +23,7 @@ const TRAINING_CONFIG = {
23
datasetSize: 2000,
24
inputFeatures: 5,
25
outputClasses: 3,
26
- minibatchSize: 128,// Added for faster training
+ minibatchSize: 128,
27
};
28
29
// Data generation
@@ -252,7 +252,7 @@ async function main() {
252
try {
253
console.time('Total Execution Time');
254
255
- const experimentName = 'Neural_Network_Hyperparameter_Tuning_Fast';
+ const experimentName = 'Neural_Network_Hyperparameter_Tuning';
256
let experimentId;
257
258
const experiment = await mlflow.getExperimentByName(experimentName);
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments