forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRangeDataset.cs
More file actions
21 lines (19 loc) · 736 Bytes
/
RangeDataset.cs
File metadata and controls
21 lines (19 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Tensorflow.Framework.Models;
using static Tensorflow.Binding;
namespace Tensorflow.Data
{
public class RangeDataset : DatasetSource
{
public RangeDataset(int stop,
int start = 0,
int step = 1,
TF_DataType output_type = TF_DataType.TF_INT64)
{
var start_tensor = tf.convert_to_tensor((long)start);
var step_tensor = tf.convert_to_tensor((long)step);
var stop_tensor = tf.convert_to_tensor((long)stop);
structure = new TensorSpec[] { new TensorSpec(new int[0], dtype: output_type) };
variant_tensor = ops.range_dataset(start_tensor, stop_tensor, step_tensor, output_types, output_shapes);
}
}
}