If you wanted a lighter client or a more flexible backend this should be the one to check out. Let me know if you use it and if you’re missing some API.
You would probably be interested in models like gpt-2 Better language models and their implications which now has the full 1.5B parameter model released: GPT-2: 1.5B release (it’s super heavy though). This can predict fairly decently additional text based on a snippet of input text. It can even answer some questions about a text (reading comprehension).
Below was an example I used for testing reading comprehension. Everything below SAMPLE 1 is generated by gpt-2 in response to the text above it.
This should help make the multi-variant component refactor (tracked at Refactor to support Native and Remote variants · Issue #53 · getnamo/tensorflow-ue4 · GitHub) a reality. The remote variant has already been implemented and released, we now just have the native variant currently outstanding. Keep an eye out on the issue to track progress for this upgrade. Let me know if there is some specific API you’d be interested in having in either case.
The remote is ready to use on e.g. windows systems, I need to squash a bug or two to make it run well on linux. The inference focused plugin needs BP api work.
I tried using the plugin for unreal version 4.23, the project loads up to 71% and then disappears. When I do a debug build from Visual Studio, I get the following error:
Fatal Python error: Py_Initialize: unable to load the file system codec
I have python 3.8 installed on my machine, do you know what is the source of this error or what can I do to make the plugin work?
Thanks
I’m starting working with tensorflow plugin. I would like to use neural style transfer techniques.
My question is : Is there currently a way to input an image rather than a json?
Current pipeline uses json for transport. If you input an image it will convert into a Json array value of floats which can easily be loaded into numpy.
ideally we’d have a way to mark a texture as a shareable and then be able to re-use this pointer in tensorflow, I’m unsure if tensorflow has ops that supports this in theory.
If you come up with a better solutions, code contributions are welcome!
I am a newer on unreal engine.
there is one problem in unreal engine as following, is there some way to use python and tensorflow on the runing mode??
Unlike Blueprints, the Python environment is only available in the Unreal Editor , not when your Project is running in the Unreal Engine in any mode, including Play In Editor, Standalone Game, cooked executable, etc. That means that you can use Python freely for scripting and automating the Editor or building asset production pipelines, but you cannot currently use it as a gameplay scripting language.