Skip to main content

Machine Common Sense Python API to Unity 3D Simulation Environment

Project description

Unit Tests Extensive Unit Tests Documentation

MCS Python Package

Python interface for interacting with MCS AI2Thor environment and running scenes. The latest release of the MCS Python library is 0.4.6. You can find the latest documentation here.

Quickstart Installation

Virtual Environments

Python virtual environments are recommended when using the Machine Common Sense package. All steps below presume the activation of the virtual environment. The developer can choose between traditional Python or Anaconda depending on need. These instructions work for Ubuntu Linux or MacOS. The MCS package has a minimum requirement of Python 3.6 regardless of Python distribution. As of 0.4.4, the MCS package will automatically download the Unity app release for that version. On the first run, the Unity app may take a while to start in order to download all the assets.

Traditional Python Environment

$ python3.6 -m venv venv
$ source venv/bin/activate
(venv) $ python -m pip install --upgrade pip setuptools wheel

Alternate Anaconda Environment

For developers using Anaconda Python distributions instead of traditional Python, create your project virtual environment from the base Anaconda environment.

(base) $ conda create -n myenv python=3.8
(base) $ conda env list
# conda environments:
#
base                  *  /home/user/anaconda3
myenv                    /home/user/anaconda3/envs/myenv
(base) $ conda activate myenv
(myenv) $

Install MCS

With the activated Python virtual environment, install the MCS package from the git url.

(venv) $ python -m pip install machine-common-sense

Sample MCS Config File

There may be additional settings you want to specify, which can be accomplished via the MCS configuration file. You can use the sample_config.ini file to start. This file has the metadata level set to oracle, which ensures that the data for all objects in a scene is returned, as well as object masks. For the purposes of this guide, we will pass this along to the MCS controller via the config_file_or_dict, which is outlined in the Usage example below.

For more in-depth information on configuration files and more about the different properties within, see the documentation about the MCS configuration file

Usage

Example usage of the MCS library:

import machine_common_sense as mcs

# Unity app file will be downloaded automatically
controller = mcs.create_controller(config_file_or_dict='./some-path/sample_config.ini')

# Either load the scene data dict from an MCS scene config JSON file or create your own.
# We will give you the training scene config JSON files and the format to make your own.
scene_data, status = mcs.load_scene_json_file(scene_json_file_path)

output = controller.start_scene(scene_data)

# Use your machine learning algorithm to select your next action based on the scene
# output (goal, actions, images, metadata, etc.) from your previous action.
action, params = select_action(output)

# Continue to select actions until your algorithm decides to stop.
while action != '':
    controller.step(action, params)
    action, params = select_action(output)

# For interaction-based goals, your series of selected actions will be scored.
# For observation-based goals, you will pass a classification and a confidence
# to the end_scene function here.
controller.end_scene()

Documentation

Other MCS GitHub Repositories

Troubleshooting

mcs-ta2@machinecommonsense.com

Acknowledgements

This material is based upon work supported by the Defense Advanced Research Projects Agency (DARPA) and Naval Information Warfare Center, Pacific (NIWC Pacific) under Contract No. N6600119C4030. Any opinions, findings and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the DARPA or NIWC Pacific.

Apache 2 Open Source License

Code in this repository is made available by CACI (formerly Next Century Corporation) under the Apache 2 Open Source License. You may freely download, use, and modify, in whole or in part, the source code or release packages. Any restrictions or attribution requirements are spelled out in the license file. For more information about the Apache license, please visit the The Apache Software Foundation’s License FAQ.

Copyright 2021 CACI (formerly Next Century Corporation)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

machine_common_sense-0.4.6.tar.gz (94.7 kB view details)

Uploaded Source

Built Distribution

machine_common_sense-0.4.6-py3-none-any.whl (120.5 kB view details)

Uploaded Python 3

File details

Details for the file machine_common_sense-0.4.6.tar.gz.

File metadata

  • Download URL: machine_common_sense-0.4.6.tar.gz
  • Upload date:
  • Size: 94.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for machine_common_sense-0.4.6.tar.gz
Algorithm Hash digest
SHA256 31ffeb8ee0cdaf7388263eee484e0ed28e6ac0a0cb7383161936fd429d223005
MD5 96d375b7dbc0d76f7daa625fe7e93fdb
BLAKE2b-256 d64a9f257c2a5be159e22913cc9b25b28c979814ae275140896654c25725cae9

See more details on using hashes here.

File details

Details for the file machine_common_sense-0.4.6-py3-none-any.whl.

File metadata

  • Download URL: machine_common_sense-0.4.6-py3-none-any.whl
  • Upload date:
  • Size: 120.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for machine_common_sense-0.4.6-py3-none-any.whl
Algorithm Hash digest
SHA256 1118b1d857d435b88ea09713dca66e7f958560eebbbda50dcb119d24d55b9209
MD5 f5226868883a6e4ff7e8dd8df7231b65
BLAKE2b-256 385b89c3b76f4c822c7862d54c42e64f2e2fcfa97ad5b7645d58b2710e094433

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page