diff --git a/deepes/README.md b/deepes/README.md index 179a396c809e4550a97c8ed15cd44a6e1a6a681c..8304e3c08dbe338ac23cb3576282efb6e1313715 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中