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.5. 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.5.tar.gz (94.2 kB view details)

Uploaded Source

Built Distribution

machine_common_sense-0.4.5-py3-none-any.whl (119.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: machine_common_sense-0.4.5.tar.gz
  • Upload date:
  • Size: 94.2 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.5.tar.gz
Algorithm Hash digest
SHA256 1501fac4da372221f69153ed7aa1e6eff13783313585b649e227aa796ffc5ce7
MD5 2e0ac792c97e50a12c4560e6655e9284
BLAKE2b-256 30550b8d3e7ec94ba3ce322a01876587f2952150dfcc0a8fc31284740a28f4af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: machine_common_sense-0.4.5-py3-none-any.whl
  • Upload date:
  • Size: 119.3 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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 657d31fb9dbb5f840f683fe95c19c21dd17a47761b023b9bfa97a23dcfcbd126
MD5 f177bba824230c63a43b6d425750a72d
BLAKE2b-256 0c3d5167a7eab5648368726cd92a39dc967ce4c297ced7d43c6dda648c2f5970

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