Closed lostmsu closed 4 years ago
E.g.
new Flatten(kwargs: new { input_shape = (28, 28) })
instead of
new Flatten(kwargs: new PythonDict<string, object> { ["input_shape"] = (28, 28) })
To avoid accidental type confusion, the syntax will be, for example,
new Flatten(kwargs: new { input_shape = (28, 28) }.AsKwArgs());
E.g.
instead of