Eli Belash
891346e4e3
Refactored DisposableObject
6 years ago
Oceania2018
5e43f4dcab
init commit for YOLOv3.
6 years ago
Oceania2018
683aeed693
tf.GraphKeys #359
6 years ago
Oceania2018
faa93bf179
tf.no_op #359
6 years ago
Oceania2018
210bc8916e
trainable_variables #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
Brendan Mulcahy
babfb020e7
New line for better consistency
6 years ago
Brendan Mulcahy
098f597e32
Add tf.nn.in_top_k
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
0e99b605a5
Adding `logical_or` operator ( #344 )
Relative unit test in `OperationTest`.
6 years ago
Antonio Cifonelli
bad9aba49e
Adding `logical_not` operator ( #343 )
Relative unit test in `OperationTest`.
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
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
8f9f5e36dd
add Prediction function for Transfer Learning
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
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
Meinrad Recheis
4bc66027e2
c_api: TF_NewTensor now allows pinned managed objects to be passed down to TF (needed different deallocator arg type)
6 years ago
Oceania2018
c3ae8b1f03
Build RNN graph, BasicRNNCell not implemented.
6 years ago
Oceania2018
051855e839
fix return value issue for weight_variable and bias_variable.
6 years ago
Oceania2018
b44fda96a7
remove Microsoft.ML.TensorFlow.Redist dependency.
6 years ago
Oceania2018
bc4fbf10f2
MNIST CNN not finished yet.
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
Antonio Cifonelli
0f4cb1aedb
Add `BatchMatMul` operation
Adding the `BatchMatMul` operation.
Expanding `BasicOperations` to test the new operation.
6 years ago
Oceania2018
9a71f758dc
fix create_slot_with_initializer, upgrade to v1.14.0.
6 years ago
Oceania2018
512f3ce4e9
add _MinOrMaxGrad and _MaximumMinimumGrad
6 years ago
Oceania2018
fed0550c12
fix rank_internal, add gradients_util
6 years ago
Oceania2018
8e2e31cc67
add Gradient for GatherV2, MaxPool, op.
6 years ago
Oceania2018
a4f03c22ec
added sparse_softmax_cross_entropy_with_logits
6 years ago
Oceania2018
5981d2de61
added tf.nn.dropout
6 years ago
Oceania2018
112247f05f
added tf.concat interface.
6 years ago
Oceania2018
f0d1ee8db4
fix max_pooling2d name_scope.
6 years ago
Oceania2018
d7c7d3d90b
fix tf.layers.conv2d
6 years ago
Oceania2018
a5ae56affc
add tf.where api.
6 years ago
Oceania2018
e56e5d3292
word_cnn training completed, but saving model doesn't work.
6 years ago
Oceania2018
ed6fd47e51
Finished final model evaluation. Freezing graph has not been finished yet. #248
6 years ago
Oceania2018
84440b2e01
manually construct graph for retain layer.
6 years ago
Oceania2018
1fca618958
add SummaryToEventTransformer, EventProto, SummaryProto. #248
6 years ago
Oceania2018
9e895b30ae
add tf.summary #248
6 years ago
Oceania2018
beda6c4bd2
Add a Transfer Learning example for image recognition. #248
6 years ago