- ..
- app_spec-checkpoint.yml
- handler-checkpoint.py
- img-checkpoint.jpeg
- model-checkpoint.py
- OVERVIEW-checkpoint.md
- README-checkpoint.ipynb
- README-checkpoint.md
- requirements-checkpoint.txt
- test-checkpoint.ipynb
- test-Copy1-checkpoint.ipynb
- Untitled-checkpoint.ipynb
- Untitled-Copy1-checkpoint.ipynb
- Untitled-Copy2-checkpoint.ipynb
Untitled-checkpoint.ipynb @da31108 — view markup · raw · history · blame
In [1]:
# You can use other public modules via our Client object with module's identifier
# and parameters.
# For more detailes, please see our online document - https://momodel.github.io/docs/#
import os
import sys
# Define root path
sys.path.append('../')
# Import necessary packages
from modules import json_parser
from modules import Client
# Initialise Client object
client = Client(api_key='996c5ec910a35bc0813ba5f12f4ba667ba10af41ecd4c9dd0ff9aa5cbfc0439a',
project_id='5cd04ee51afd94639a492b8e', user_ID='5ca1c6991afd941dd93a4052',
project_type='app', source_file_path='Untitled.ipynb')
# Make run/train/predict command alias for further use
run = client.run
train = client.train
predict = client.predict
# Make controller alias for further use
controller = client.controller
In [ ]: