glopesdev

Results 47 comments of glopesdev

Anyone knows what it would take to upgrade the ops to TF 2.x? TensorFlow.NET has several unnecessary dependencies (Serilog, etc) which are annoying for lightweight applications.

Thanks @dsyme, I will try to do this and open an issue in their repository. After a first audit of TensorFlow.NET source code, however, I suspect the maintainers might not...

As a further reference, the reason for the first issue outlined above seems to originate from an actual change in TensorFlow. Starting from version 2.4 it seems the TensorFlow team...

Progress report: after diving a bit into the internals of `tensorflow.dll` it looked like the overall structure of the low-level API is pretty similar, so I just went ahead and...

I've submitted a PR to fix this, but I understand it will never be merged here, so it will probably be my last PR to this repository. For now, I...

Interestingly, removing System.ValueTuple entirely could be another option, as the project seems to build fine without it, even on netstandard2.0.

In fact, it seems we could go further and target netstandard2.0 only. It comes built-in from .NET 4.7.1 onwards: https://github.com/dotnet/standard/issues/514

Actually, for reference, the native library name should probably have been defined simply as `tensorflow` and nothing else. Both extensions (`.so`, `.dylib`, `.dll`) and OS-specific prefix `lib` are inferred by...

@migueldeicaza Any chance this might be merged? I have been evolving the repository and would like to follow-up with additional PRs, but given the deprecation notice, I'm trying to decide...

@dmedine thanks for giving it a try! I would be curious to hear more about the warnings you got when installing the package, do you have any error message text...