Keras Tuner超波段历元

yhxst69z  于 2023-03-30  发布在  其他
关注(0)|答案(1)|浏览(112)

我正在运行Keras Tuner(Hyperband),因为Random search没有找到最佳解决方案,我想知道我们如何控制要运行的模型和epochs的数量。在Randomsearch中,我们可以清楚地给予最大试验次数和每次试验的执行次数,但我在Hyperband中没有找到此参数。我可以在Hyperband中看到max_epoch,但如果我在执行www.example.com时指定epochs=100,它将如何使用tuner.search
你能帮帮我吗。

qxsslcnc

qxsslcnc1#

它似乎没有 max_trials 参数,但总历元可以通过以下公式估计:

max_epochs * (math.log(max_epochs, factor) ** 2) * iteration

document所示。

相关问题