File size: 513 Bytes
a4473a4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 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;
}
}
|