Skip to main content

Machine Common Sense Python API to Unity 3D Simulation Environment

Project description

PyPI version fury.io PyPI pyversions Linux macOS Downloads Downloads PyPI license

Master Unit Tests: Master

Development Unit Tests: Development

Publish Documentation: Publish Docs

Publish to PyPI: Publish PyPI

MCS Python Package

Python interface for interacting with MCS AI2Thor environment and running scenes. The latest release of the MCS Python library is 0.6.1. 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.7 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.7 -m venv --prompt mcs 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 = 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.6.1.tar.gz (118.4 kB view details)

Uploaded Source

Built Distribution

machine_common_sense-0.6.1-py3-none-any.whl (144.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: machine_common_sense-0.6.1.tar.gz
  • Upload date:
  • Size: 118.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for machine_common_sense-0.6.1.tar.gz
Algorithm Hash digest
SHA256 4adc20d6bd845277a6b2472e46ccf82ef3911c4fbb1bc66178dd939d123e9355
MD5 b492933c158f45ef1756693c33ab7f7f
BLAKE2b-256 d11b63b5198bb2d2a2d325970e8add3b114a24b49da9a1603f0d799a1845b286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for machine_common_sense-0.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e25288f810ebf565415be07fae70f6e2d321c683d888a74234a4d25e993e019f
MD5 87d43621dec912cd3f3265a6f37bbccf
BLAKE2b-256 c18ba1f12b1ed52bcecf70f9e29263a94246876b26df25290c7bb26125c4e9a9

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