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.

SaveableCompat.cs 349 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Tensorflow.Train;
  5. namespace Tensorflow.Checkpoint
  6. {
  7. internal static class SaveableCompat
  8. {
  9. public static string? get_saveable_name(Trackable cls_or_obj)
  10. {
  11. // TODO: implement it with Attribute.
  12. return null;
  13. }
  14. }
  15. }