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.

TrackableConstant.cs 237 B

1234567891011
  1. using Tensorflow.Train;
  2. namespace Tensorflow.Trackables;
  3. public class TrackableConstant : Trackable
  4. {
  5. public static (Trackable, Action<object, object, object>) deserialize_from_proto()
  6. {
  7. return (null, null);
  8. }
  9. }