From 052638b34fcf84522febebde4e2574b1c05a34ae Mon Sep 17 00:00:00 2001 From: Hongsheng Zeng Date: Mon, 23 Mar 2020 16:40:24 +0800 Subject: [PATCH] Update README.md --- deepes/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deepes/README.md b/deepes/README.md index 179a396..8304e3c 100644 --- a/deepes/README.md +++ b/deepes/README.md @@ -9,7 +9,7 @@ DeepES是一个支持**快速验证**ES效果、**兼容多个框架**的C++库 //实例化一个预测,根据配置文件加载模型,采样方式(Gaussian\CMA sampling..)、更新方式(SGD\Adam)等 auto agent = ESAgent(config); -for (int i = 0; i < 100; ++i) { +for (int i = 0; i < 10; ++i) { auto sampling_agnet = agent->clone(); // clone出一个sampling agent SamplingKey key; agent->add_noise(key); // 参数扰动,同时保存随机种子到key中 -- GitLab