unitypredict-engines 0.0.1__tar.gz → 0.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/PKG-INFO +6 -6
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/README.md +5 -5
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/setup.py +1 -1
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/unitypredict_engines.egg-info/PKG-INFO +6 -6
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/setup.cfg +0 -0
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/unitypredict_engines/Models.py +0 -0
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/unitypredict_engines/Platform.py +0 -0
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/unitypredict_engines/UnityPredictLocalHost.py +0 -0
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/unitypredict_engines/__init__.py +0 -0
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/unitypredict_engines/scripts.py +0 -0
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/unitypredict_engines.egg-info/SOURCES.txt +0 -0
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/unitypredict_engines.egg-info/dependency_links.txt +0 -0
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/unitypredict_engines.egg-info/entry_points.txt +0 -0
- {unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/unitypredict_engines.egg-info/top_level.txt +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: unitypredict-engines
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Description-Content-Type: text/markdown
|
|
5
5
|
|
|
6
6
|
# UnityPredict Local App Engine Creator
|
|
7
7
|
|
|
8
8
|
## Introduction
|
|
9
9
|
|
|
10
|
-
The `
|
|
10
|
+
The **`unitypredict-engines` python sdk** is designed to help accelerate the testing and debugging of **App Engines** for deployment on the `UnityPredict` platform.
|
|
11
11
|
|
|
12
12
|
On `UnityPredict`, **"Engines"** are the underlying compute framework that is executed, at scale, to perform inference or run business logic. In contrast, **"Models"** define the interface for these Engines. **Every Engine must be connected to a "Model"** because the Model serves as the interface that defines how `UnityPredict` communicates with the Engine. The Model specifies variable names and data types for inputs and outputs. Additionally, `UnityPredict` uses the Model definition to auto-generate APIs and user interfaces.
|
|
13
13
|
|
|
@@ -18,9 +18,9 @@ This guide focuses on the local development and testing of custom App Engine cod
|
|
|
18
18
|
For a full guide on how to use App Engine(s) on UnityPredict, please visit our complete help documentation here [UnityPredict Docs](https://console.unitypredict.com).
|
|
19
19
|
|
|
20
20
|
## Installation
|
|
21
|
-
* You can use pip to install the ```unitypredict``` library.
|
|
21
|
+
* You can use pip to install the ```unitypredict-engines``` library.
|
|
22
22
|
```bash
|
|
23
|
-
pip install unitypredict
|
|
23
|
+
pip install unitypredict-engines
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
## Usage
|
|
@@ -41,7 +41,7 @@ Given below is an example of a simple **`EntryPoint.py`**
|
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
```python
|
|
44
|
-
from
|
|
44
|
+
from unitypredict_engines.Platform import IPlatform, InferenceRequest, InferenceResponse, OutcomeValue, InferenceContextData
|
|
45
45
|
import datetime
|
|
46
46
|
|
|
47
47
|
|
|
@@ -79,7 +79,7 @@ In order to run the `EntryPoint.py` locally, add the following `main` section to
|
|
|
79
79
|
|
|
80
80
|
if __name__ == "__main__":
|
|
81
81
|
|
|
82
|
-
from
|
|
82
|
+
from unitypredict_engines import UnityPredictHost
|
|
83
83
|
|
|
84
84
|
# Initialize the UnityPredict Platform
|
|
85
85
|
platform = UnityPredictHost()
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## Introduction
|
|
4
4
|
|
|
5
|
-
The `
|
|
5
|
+
The **`unitypredict-engines` python sdk** is designed to help accelerate the testing and debugging of **App Engines** for deployment on the `UnityPredict` platform.
|
|
6
6
|
|
|
7
7
|
On `UnityPredict`, **"Engines"** are the underlying compute framework that is executed, at scale, to perform inference or run business logic. In contrast, **"Models"** define the interface for these Engines. **Every Engine must be connected to a "Model"** because the Model serves as the interface that defines how `UnityPredict` communicates with the Engine. The Model specifies variable names and data types for inputs and outputs. Additionally, `UnityPredict` uses the Model definition to auto-generate APIs and user interfaces.
|
|
8
8
|
|
|
@@ -13,9 +13,9 @@ This guide focuses on the local development and testing of custom App Engine cod
|
|
|
13
13
|
For a full guide on how to use App Engine(s) on UnityPredict, please visit our complete help documentation here [UnityPredict Docs](https://console.unitypredict.com).
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
16
|
-
* You can use pip to install the ```unitypredict``` library.
|
|
16
|
+
* You can use pip to install the ```unitypredict-engines``` library.
|
|
17
17
|
```bash
|
|
18
|
-
pip install unitypredict
|
|
18
|
+
pip install unitypredict-engines
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
@@ -36,7 +36,7 @@ Given below is an example of a simple **`EntryPoint.py`**
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
```python
|
|
39
|
-
from
|
|
39
|
+
from unitypredict_engines.Platform import IPlatform, InferenceRequest, InferenceResponse, OutcomeValue, InferenceContextData
|
|
40
40
|
import datetime
|
|
41
41
|
|
|
42
42
|
|
|
@@ -74,7 +74,7 @@ In order to run the `EntryPoint.py` locally, add the following `main` section to
|
|
|
74
74
|
|
|
75
75
|
if __name__ == "__main__":
|
|
76
76
|
|
|
77
|
-
from
|
|
77
|
+
from unitypredict_engines import UnityPredictHost
|
|
78
78
|
|
|
79
79
|
# Initialize the UnityPredict Platform
|
|
80
80
|
platform = UnityPredictHost()
|
{unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/unitypredict_engines.egg-info/PKG-INFO
RENAMED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: unitypredict-engines
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Description-Content-Type: text/markdown
|
|
5
5
|
|
|
6
6
|
# UnityPredict Local App Engine Creator
|
|
7
7
|
|
|
8
8
|
## Introduction
|
|
9
9
|
|
|
10
|
-
The `
|
|
10
|
+
The **`unitypredict-engines` python sdk** is designed to help accelerate the testing and debugging of **App Engines** for deployment on the `UnityPredict` platform.
|
|
11
11
|
|
|
12
12
|
On `UnityPredict`, **"Engines"** are the underlying compute framework that is executed, at scale, to perform inference or run business logic. In contrast, **"Models"** define the interface for these Engines. **Every Engine must be connected to a "Model"** because the Model serves as the interface that defines how `UnityPredict` communicates with the Engine. The Model specifies variable names and data types for inputs and outputs. Additionally, `UnityPredict` uses the Model definition to auto-generate APIs and user interfaces.
|
|
13
13
|
|
|
@@ -18,9 +18,9 @@ This guide focuses on the local development and testing of custom App Engine cod
|
|
|
18
18
|
For a full guide on how to use App Engine(s) on UnityPredict, please visit our complete help documentation here [UnityPredict Docs](https://console.unitypredict.com).
|
|
19
19
|
|
|
20
20
|
## Installation
|
|
21
|
-
* You can use pip to install the ```unitypredict``` library.
|
|
21
|
+
* You can use pip to install the ```unitypredict-engines``` library.
|
|
22
22
|
```bash
|
|
23
|
-
pip install unitypredict
|
|
23
|
+
pip install unitypredict-engines
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
## Usage
|
|
@@ -41,7 +41,7 @@ Given below is an example of a simple **`EntryPoint.py`**
|
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
```python
|
|
44
|
-
from
|
|
44
|
+
from unitypredict_engines.Platform import IPlatform, InferenceRequest, InferenceResponse, OutcomeValue, InferenceContextData
|
|
45
45
|
import datetime
|
|
46
46
|
|
|
47
47
|
|
|
@@ -79,7 +79,7 @@ In order to run the `EntryPoint.py` locally, add the following `main` section to
|
|
|
79
79
|
|
|
80
80
|
if __name__ == "__main__":
|
|
81
81
|
|
|
82
|
-
from
|
|
82
|
+
from unitypredict_engines import UnityPredictHost
|
|
83
83
|
|
|
84
84
|
# Initialize the UnityPredict Platform
|
|
85
85
|
platform = UnityPredictHost()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{unitypredict-engines-0.0.1 → unitypredict-engines-0.0.3}/unitypredict_engines.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|