Skip to content

Instantly share code, notes, and snippets.

@wxinix
Created December 15, 2019 02:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wxinix/0a907b81865387e8a4bb4e35a83e0a37 to your computer and use it in GitHub Desktop.
Save wxinix/0a907b81865387e8a4bb4e35a83e0a37 to your computer and use it in GitHub Desktop.
TensorFlow Sample in Oxygene
namespace hello_tf_oxygene;
uses
RemObjects.Elements.System,
TensorFlow;
type
Program = class
public
class method Main(args: array of String): Int32;
begin
writeLn('Hello World TensorFlow Oxygene: '
+ String.FromPAnsiChars(TF_Version()));
end;
end;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment