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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using static Tensorflow.Binding;
-
- namespace Tensorflow.NumPy
- {
- public partial class NDArray
- {
- public NDArray this[int index]
- {
- get
- {
- return _tensor[index];
- }
-
- set
- {
-
- }
- }
-
- public NDArray this[params int[] index]
- {
- get
- {
- return _tensor[index.Select(x => new Slice(x, x + 1)).ToArray()];
- }
-
- set
- {
-
- }
- }
-
- public NDArray this[params Slice[] slices]
- {
- get
- {
- return _tensor[slices];
- }
-
- set
- {
-
- }
- }
-
- public NDArray this[NDArray mask]
- {
- get
- {
- throw new NotImplementedException("");
- }
-
- set
- {
-
- }
- }
- }
- }
|