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.

EagerRunner.cs 790 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Tensorflow.Gradients;
  5. namespace Tensorflow.Eager
  6. {
  7. public class EagerRunner : IEagerRunner
  8. {
  9. public Tensor[] TFE_Execute(Context ctx, string device_name, string op_name, Tensor[] inputs, object[] attrs, int num_outputs)
  10. {
  11. throw new NotImplementedException();
  12. }
  13. public Tensor[] TFE_FastPathExecute(Context ctx, string device_name, string opName, string name, Action callbacks, params object[] args)
  14. {
  15. throw new NotImplementedException();
  16. }
  17. public Tensor[] TFE_TapeGradient(ITape tape, Tensor[] target, Tensor[] sources, Tensor[] output_gradients)
  18. {
  19. throw new NotImplementedException();
  20. }
  21. }
  22. }