You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using static Tensorflow.Binding;
-
- namespace Tensorflow.Keras.Engine
- {
- public class CallContextManager : IDisposable
- {
- bool _build_graph;
-
- public CallContextManager(bool build_graph)
- {
- _build_graph = build_graph;
- }
-
- public void Dispose()
- {
-
- }
- }
- }
|