-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathMachineLearningRemote.uplugin
More file actions
39 lines (39 loc) · 1.03 KB
/
MachineLearningRemote.uplugin
File metadata and controls
39 lines (39 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"FileVersion": 3,
"Version": 1,
"VersionName": "0.9.0",
"FriendlyName": "MachineLearningRemote",
"Description": "Machine Learning plugin for the Unreal Engine, encapsulating calls to remote servers running Tensorflow or Pytorch. Contains base API for many specialized plugin variants to be easily swappable without changing developer bind.",
"Category": "Computing",
"CreatedBy": "Getnamo",
"CreatedByURL": "http://www.getnamo.com",
"DocsURL": "https://github.com/getnamo/machine-learning-remote-ue4",
"MarketplaceURL": "",
"SupportURL": "https://github.com/getnamo/machine-learning-remote-ue4/issues",
"CanContainContent": true,
"IsBetaVersion": false,
"Installed": false,
"Modules": [
{
"Name": "MachineLearningBase",
"Type": "Runtime",
"LoadingPhase": "Default"
},
{
"Name": "MachineLearningRemote",
"Type": "Runtime",
"LoadingPhase": "Default"
},
{
"Name": "MLProcess",
"Type": "Runtime",
"LoadingPhase": "Default"
}
],
"Plugins": [
{
"Name": "SocketIOClient",
"Enabled": true
}
]
}