Eli Belash
2129dbd675
Tensor perf-ops and cleanup, Revamped dtypes.cs, some renames.
- Cleanup and docs to all Tensor.cs files
- Changed all uses of System.Convert to NumSharp.Utilities.Converts
- Added all missing types in dtypes.cs
- Renamed tensor.Data<T> to tensor.ToArray<T>, added obsolete message
- Renamed tensor.Data() to tensor.BufferToArray(), added obsolete message
- Made GraphKeys to use const string instead allocating strings at every use of GraphKeys.
6 years ago
Oceania2018
683aeed693
tf.GraphKeys #359
6 years ago
Oceania2018
226720dd88
Merge Tensorflow.Python into Tensorflow.Binding.
6 years ago
Oceania2018
67a58b3eac
change tensorflow to non-static class in order to execute some initialization.
6 years ago
Arnav Das
fef7fe4140
added isinstance ( #358 )
6 years ago
Oceania2018
f740b1a239
CNN Text Classification passed
6 years ago
Oceania2018
164759174d
merge with master.
6 years ago
Oceania2018
879067deb4
tf.WhileContext()
6 years ago
Antonio Cifonelli
924e1592af
Adding `logical_xor` operator ( #346 )
Relative unit test in `OperationTest`.
6 years ago
Antonio Cifonelli
9f6c04ba75
Adding `logical_or` operator ( #344 )
Relative unit test in `OperationTest`.
6 years ago
Antonio Cifonelli
0e99b605a5
Adding `logical_or` operator ( #344 )
Relative unit test in `OperationTest`.
6 years ago
Oceania2018
07bed359b9
merge from master
6 years ago
Oceania2018
8a50673baa
Make Graph inherits from DisposableObject.
6 years ago
Antonio Cifonelli
bad9aba49e
Adding `logical_not` operator ( #343 )
Relative unit test in `OperationTest`.
6 years ago
Oceania2018
6457a4e8e0
exception when OpType handle is zero.
6 years ago
Oceania2018
a89c9aba34
rename with to tf_with, only use to construct graph purpose.
6 years ago
Antonio Cifonelli
3ff5988c1d
Adding `logical_and` operator ( #338 )
Relative unit test in `OperationTest`.
6 years ago
Oceania2018
810df5bf23
Removed shared Status instance in Operation.
6 years ago
Oceania2018
3d085c4e73
exception when OpType handle is zero.
6 years ago
Oceania2018
8178785b97
rename with to tf_with, only use to construct graph purpose.
6 years ago
Antonio Cifonelli
9502395de7
Adding `logical_and` operator ( #338 )
Relative unit test in `OperationTest`.
6 years ago
Oceania2018
c12b5b9d58
Removed shared Status instance in Operation.
6 years ago
Oceania2018
6623162244
fix default graph and operation issue when import model.
6 years ago
Oceania2018
a8aac8d0b8
fix default graph and operation issue when import model.
6 years ago
Oceania2018
20b348c37a
1st stage to integrate with NumSharp.
6 years ago
Haiping
ca99be32f6
dynamic_rnn implementation ( #323 )
6 years ago
Antonio
f8912135a7
Adding `Cumsum` operation ( #322 )
Unit testing the operation too.
6 years ago
Johann Dirry
09345b9a82
implementing some additional methods ( #317 )
6 years ago
Antonio
a880b5326d
Adding `IsNan` operation ( #315 )
Exposing also the `IsFinite` one.
Unit testing both operations.
6 years ago
Oceania2018
6ac66516ef
fix strided_slice_grad type convention error. #307
6 years ago
Antonio
46ec8e561d
Adding new ctor for `Session` ( #309 )
Meant to be a shortcut to directly set some basic configuration.
E.g.
```
var sessionOptions = new SessionOptions();
sessionOptions.SetConfig(new ConfigProto
{
LogDevicePlacement = true,
InterOpParallelismThreads = 4,
GpuOptions = new GPUOptions
{
AllowGrowth = true,
PerProcessGpuMemoryFraction = 0.12
}
});
var session = tf.Session(sessionOptions);
```
Adding `AbsGrad`
To be aligned with Tensorflow, introducing also `Sign` operation
and its gradient.
6 years ago
Oceania2018
654fc76d0c
fix gradients parameters issue.
6 years ago
Oceania2018
4a367470b6
Add _StridedSliceGrad, _StridedSliceGradGrad, tf.math.lgamma
6 years ago
Johann Dirry
0e9aeafad5
removing unused namespaces ( #301 )
* removing unused namespaces
* implementing Tensor to scalar and scalar to tensor conversions
6 years ago
Oceania2018
d674d51df6
add dynamic_rnn, _transpose_batch_time for RNN.
6 years ago
Oceania2018
e1db889a5b
add tf.nn.elu activation function. #294
6 years ago
Oceania2018
ee0b935557
Add BasicRNNCell, LayerRNNCell, RNNCell,
Change nest.flatten to generic.
6 years ago
Oceania2018
c3ae8b1f03
Build RNN graph, BasicRNNCell not implemented.
6 years ago
Oceania2018
bc4fbf10f2
MNIST CNN not finished yet.
6 years ago
Deepak Battini
b430d6f7e8
ZeroFraction function fixed
6 years ago
Oceania2018
7950e8e9e4
apply the Apache License boilerplate notice at the top of every single file.
6 years ago
Oceania2018
bf3d1e969c
Whooray, finally make AdamOptimizer work as expected.
6 years ago
Oceania2018
04c80f31d4
DigitRecognitionNN works, but the accuracy is only 92% after 10 epochs, it's supposed to be 97%.
6 years ago
Antonio Cifonelli
0f4cb1aedb
Add `BatchMatMul` operation
Adding the `BatchMatMul` operation.
Expanding `BasicOperations` to test the new operation.
6 years ago
Deepak Kumar
c62d9ee520
AddControlInput and UpdateEdge works..
6 years ago
Deepak Battini
1143d866d6
Scoped Struct Added for Ops API extensions
6 years ago
Deepak Battini
e4c9437664
ZeroFraction core function impl done! Control Flow is not implemented with AddControlInput and UpdateEdge which is not exposed as C_API. Need to implement it seperately.
6 years ago
Oceania2018
89f305ca08
fix shape issue for IndexedSlice
6 years ago
Bo Peng
984405f184
Merge branch 'master' of https://github.com/SciSharp/TensorFlow.NET
6 years ago
Bo Peng
d5d5a46ba3
fix bug in normal distribution: _log_prob
6 years ago