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.

CallContextManager.cs 355 B

4 years ago
1234567891011121314151617181920
  1. using System;
  2. using static Tensorflow.Binding;
  3. namespace Tensorflow.Keras.Engine
  4. {
  5. public class CallContextManager : IDisposable
  6. {
  7. bool _build_graph;
  8. public CallContextManager(bool build_graph)
  9. {
  10. _build_graph = build_graph;
  11. }
  12. public void Dispose()
  13. {
  14. }
  15. }
  16. }