We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var matrix = np.zeros((10,3)); matrix[np.arange(10), 1] = 1;
matrix[np.arange(10), np.random.randint(0, 2, (1,10))] = 1;
The text was updated successfully, but these errors were encountered:
@asyura If possible, you need to get familiar with porting Unit Tests from native from google to Tensorflow.NET as discussed here.
Then if will have the "helicopter" view where are the missing parts and where the community can contribute in complementary way.
Sorry, something went wrong.
@asyura Please try to use tf.Variable slice assign function:
tf.Variable
TensorFlow.NET/test/TensorFlowNET.UnitTest/Basics/VariableTest.cs
Line 56 in d75366c
@asyura You can follow this example.
No branches or pull requests
var matrix = np.zeros((10,3));
matrix[np.arange(10), 1] = 1;
matrix[np.arange(10), np.random.randint(0, 2, (1,10))] = 1;
The text was updated successfully, but these errors were encountered: