|
|
|
@@ -12,5 +12,8 @@ namespace Tensorflow |
|
|
|
|
|
|
|
public IDatasetV2 range(int count, TF_DataType output_type = TF_DataType.TF_INT64) |
|
|
|
=> new RangeDataset(count, output_type: output_type); |
|
|
|
|
|
|
|
public IDatasetV2 range(int start, int stop, int step = 1, TF_DataType output_type = TF_DataType.TF_INT64) |
|
|
|
=> new RangeDataset(stop, start: start, step: step, output_type: output_type); |
|
|
|
} |
|
|
|
} |