ppo-SnowballTarget / Tools /ci /Program.cs
ashish2244's picture
Initial commit (part 4)
a4473a4 verified
Raw
History Blame Contribute Delete
513 Bytes
using MLAgents.Cookbook.Settings;
using RecipeEngine;
using RecipeEngine.Modules.Wrench.Helpers;
// ReSharper disable once CheckNamespace
public static class Program
{
public static int Main(string[] args)
{
var settings = new MLAgentsSettings();
// ReSharper disable once UnusedVariable
var engine = EngineFactory
.Create()
.ScanAll()
.WithWrenchModule(settings.Wrench)
.GenerateAsync().Result;
return engine;
}
}