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 216 B

5 years ago
5 years ago
12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using NumSharp;
  5. namespace Tensorflow
  6. {
  7. public interface IDataSet
  8. {
  9. NDArray Data { get; }
  10. NDArray Labels { get; }
  11. }
  12. }