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.

IDataSet.cs 236 B

12345678910111213
  1. using NumSharp;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace TensorFlowNET.Examples.Utility
  6. {
  7. public interface IDataSet
  8. {
  9. NDArray data { get; }
  10. NDArray labels { get; }
  11. }
  12. }