Haiping
1ded2ed3cb
v0.10.2 ( #318 )
* fixed a bug about unzip
* added a test case for MnistModelLoader
* cleared warnings in the UnitTest project
* Upgrade NumSharp with signature.
* Testing gradients function: (#307 )
- Concat
- LGamma
- Tanh
- Slice
* 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.
* fix strided_slice_grad type convention error. #307
* added a static load method for MnistModelLoader
* adjusted the assembly name for hub
* add Prediction function for Transfer Learning
* fixed the path combining issue
* Init TensorFlow.Text project. put all UnitTest and Example into one project.
* Predict image category in bootleneck file.
* Adding `IsNan` operation (#315 )
Exposing also the `IsFinite` one.
Unit testing both operations.
* change bottleneck file to raw image as input for transfer learning.
* remove unnecessary projects (#316 )
* implementing some additional methods (#317 )
* got rid off the reference to the TF.NET
* updated project file for packaging
6 years ago
Oceania2018
d228b6f6b6
change text.
6 years ago
Oceania2018
63e13b11e1
Remove tf binary from core project. entry project will install binary seperate because enrty could choose platform and gpu version.
6 years ago
Oceania2018
654fc76d0c
fix gradients parameters issue.
6 years ago
Oceania2018
99bd08b1da
fix object reference issue for _AggregatedGrads #303
6 years ago
Oceania2018
4a367470b6
Add _StridedSliceGrad, _StridedSliceGradGrad, tf.math.lgamma
6 years ago
Haiping
1b315a2e75
Update README.md
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
Antonio
c616eea1e8
Adding `BatchMatMul` gradient ( #304 )
Unit testing the gradient too.
6 years ago
Kerry Jiang
6fe5a6c572
tried to implement MnistModelLoader
6 years ago
Kerry Jiang
e8e02437ae
added unzip and showprogress in console in the utils
6 years ago
Kerry Jiang
bcb0504705
added utils class for the Hub
6 years ago
Kerry Jiang
ce94a5c56c
base classes for Tensorflow.Hub
6 years ago
Oceania2018
d674d51df6
add dynamic_rnn, _transpose_batch_time for RNN.
6 years ago
Haiping
1fc38386e6
Merge pull request #299 from acifonelli/master
Add missing `operator -`s
6 years ago
Antonio Cifonelli
1e54c41f43
Add missing `operator -`s
Also unit testing all the operator cases.
6 years ago
Oceania2018
e1db889a5b
add tf.nn.elu activation function. #294
6 years ago
Oceania2018
23e70e2cdf
init TensorFlow Hub project.
6 years ago
Haiping
4f3599ebad
Merge pull request #296 from acifonelli/master
Add missing `operator +`s
6 years ago
Antonio Cifonelli
e13c444bff
Add missing `operator +`s
Also unit testing all the operator cases.
6 years ago
Meinrad Recheis
7cb17461a9
Tensor: added a constructor to create a Tensor from a fixed memory pointer that is owned by the caller
6 years ago
Oceania2018
464144d80b
Add back gen_ops.cs and release 0.10.0 rc.
6 years ago
Oceania2018
ed15b2450e
upgrade NumSharp to v0.10.4.
6 years ago
Oceania2018
ee0b935557
Add BasicRNNCell, LayerRNNCell, RNNCell,
Change nest.flatten to generic.
6 years ago
Haiping
e72fd53330
Merge pull request #295 from PranovD/master
Added continue statement to as that is what is in the original python…
6 years ago
Meinrad Recheis
2d28eefa8b
Tensor: added constructors that take a Span<T>
6 years ago
Pranov Duggasani
edd5f51f25
Added Console.Write instead of ignoring exception
6 years ago
Pranov Duggasani
29434d3d99
Added continue statement to as that is what is in the original python file and got rid off cast error
6 years ago
Haiping
3c266fbfc5
Merge pull request #292 from harishsk/TFRedistMigration
Fixed behavior of UpdateSHA
6 years ago
Harish S. Kulkarni
f0c318621a
Fixed compare bug on Windows
6 years ago
Harish Kulkarni
ee155a40cc
Fixed behavior of UpdateSHA
6 years ago
Oceania2018
f49ab8459c
cnn docs updated.
6 years ago
Oceania2018
3e69c5bf8a
remove tensorflow binary from Benchmark project.
6 years ago
Oceania2018
b28687b245
fix variable path for transfer learning and word2vec.
6 years ago
Meinrad Recheis
e76fb3ec05
Update README.md
6 years ago
Meinrad Recheis
b2a9a989af
Tensor: dispose Tensors that have been garbage collected (thread safe) + test
6 years ago
Oceania2018
2a2a1e169a
run example easier #290
6 years ago
Meinrad Recheis
a79382b15e
Tensor: made the deallocator functions static (they should not have access to anything anyway)
6 years ago
Meinrad Recheis
009836625a
Tensor: check the gcHandle against Zero before deallocating it
6 years ago
Meinrad Recheis
de0ee59665
fixed transfer learning example and prevent double deallocation of unmanaged memory
6 years ago
Oceania2018
911cc3e316
added README for SciSharp.TensorFlow.Redist
6 years ago
Meinrad Recheis
f6e9a8c75b
Tensor.Creation: fixed handling of string Tensor and fixed deallocation of pinned arrays
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
Meinrad Recheis
9a58ebb60e
BaseSession: feeddict values are not auto-converted to NDArray any more (was a waste of time and memory)
6 years ago
Oceania2018
c3ae8b1f03
Build RNN graph, BasicRNNCell not implemented.
6 years ago
Oceania2018
1a5a7f8cf6
Released the SciSharp.TensorFlow.Redist. It's a migration from Microsoft.ML.TensorFlow.Redist. ML.NET team will not maintain the package since ML.NET v1.3.0.
6 years ago
Haiping
d46892b78d
Merge pull request #289 from harishsk/master
Renamed file to match correct case.
6 years ago
Harish Kulkarni
a966c1fe00
Fixed filename case
6 years ago
Harish Kulkarni
6ed27e6ed0
Merge pull request #2 from SciSharp/master
Syncing original repo
6 years ago
Haiping
854a5ba61a
Merge pull request #288 from harishsk/TFRedistMigration
Tf redist migration
6 years ago