forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKerasTests.cs
More file actions
27 lines (25 loc) · 801 Bytes
/
KerasTests.cs
File metadata and controls
27 lines (25 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using Tensorflow;
using Keras.Layers;
using NumSharp;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using static Tensorflow.Binding;
namespace TensorFlowNET.UnitTest
{
[TestClass]
public class BaseTests
{
[TestMethod]
public void Dense_Tensor_ShapeTest()
{
var dense_1 = new Dense(1, name: "dense_1", activation: tf.nn.relu());
var input = new Tensor(np.array(new int[] { 3 }));
dense_1.__build__(input.TensorShape);
var outputShape = dense_1.output_shape(input.TensorShape);
var a = (int[])(outputShape.dims);
var b = (int[])(new int[] { 1 });
var _a = np.array(a);
var _b = np.array(b);
Assert.IsTrue(np.array_equal(_a, _b));
}
}
}