|
|
--- |
|
|
license: mit |
|
|
language: |
|
|
- en |
|
|
--- |
|
|
|
|
|
# Deeplogix AI RPC |
|
|
|
|
|
Deeplogix AI RPC is a Python module for seamlessly running remote private AI models from your Python code as if these models were installed locally. |
|
|
|
|
|
## Installation |
|
|
|
|
|
Use the package manager [pip](https://pip.pypa.io/en/stable/) for install. |
|
|
|
|
|
Development version from TestPyPi: |
|
|
|
|
|
```bash |
|
|
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple deeplogix |
|
|
``` |
|
|
|
|
|
Production version from PyPi: |
|
|
|
|
|
```bash |
|
|
pip install deeplogix |
|
|
``` |
|
|
|
|
|
## Usage |
|
|
|
|
|
For module built-in demos: |
|
|
|
|
|
```bash |
|
|
python -m deeplogix --demo |
|
|
``` |
|
|
|
|
|
Or for your A.I. script: |
|
|
|
|
|
```bash |
|
|
python -m deeplogix ./path/to/your/script.py |
|
|
``` |
|
|
|
|
|
Or just: |
|
|
|
|
|
```bash |
|
|
python -m deeplogix |
|
|
``` |
|
|
|
|
|
And it will print usage options. |
|
|
|
|
|
When you run Deeplogix module first time - it will ask you hostId and token, which could be obtained at [Deeplogix](https://www.deeplogix.io/) site after sign up. |
|
|
|
|
|
## License |
|
|
|
|
|
[MIT](https://choosealicense.com/licenses/mit/) |
|
|
|