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.

DatasetV1Adapter.cs 272 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Tensorflow.Data
  5. {
  6. /// <summary>
  7. /// Wraps a V2 `Dataset` object in the `tf.compat.v1.data.Dataset` API.
  8. /// </summary>
  9. public class DatasetV1Adapter : DatasetV1
  10. {
  11. }
  12. }

tensorflow框架的.NET版本,提供了丰富的特性和API,可以借此很方便地在.NET平台下搭建深度学习训练与推理流程。