Code Monkey home page Code Monkey logo

brainblocks's Introduction

BrainBlocks

BrainBlocks Logo

Introduction

BrainBlocks is a framework developed by The Aerospace Corporation for building scalable Machine Learning (ML) applications using principles derived from computational neuroscience. It models neuron activations with binary patterns (vectors of 1s and 0s) which form a kind of "cortical language". Assemblages of computational blocks transmit these binary patterns between each other to create computational workflows that exploit these neuroscience principles.

BrainBlocks is a Python 3 library wrapped around a single-thread C++ backend. The design of BrainBlocks represents the practical experience gained from solving machine learning problems using a Hierarchical Temporal Memory (HTM) like approach.

Design

BrainBlocks is designed to be:

  • Usable: solve practical ML applications
  • Scalable: quick and easy to build block hierarchies of any size
  • Extensible: improve existing or develop entirely new blocks
  • Fast: leverages low-level bitwise operations
  • Low Memory: maintain as low memory footprint as possible
  • Lightweight: small project size

The current computational blocks provided are:

  • Transformers: Encodes symbols, scalars, or vectors into binary patterns for processing by BrainBlocks.
  • PatternClassifier: Supervised learning classifier for binary patterns.
  • PatternPooler: Learns mapping from one representation to a pooled representation.
  • ContextLearner: Learn inputs in provided contexts. Flags anomaly if inputs are out-of-context.
  • SequenceLearner: Learns input sequences. Flags anomaly if previously unseen sequences are detected.

Theory

Further discussion on the theory of BrainBlocks can be found here.

Machine Learning

Multivariate Abnormalities

Data Classification

Getting Started

System Requirements

BrainBlocks is known to run on the following platforms:

  • Windows (7,8,10,11)
  • MacOS (10.14 or higher)
  • Linux (Ubuntu 16+, CentOS 7+)

To install and run, you need at least the following

  • python>=3.6
  • pip

If you want to develop BrainBlocks on your system, you need at least the following additional dependencies:

  • git
  • C/C++ compiler (clang, visual studio, gcc, etc.)

Install

The easiest way to install BrainBlocks is using pip.

pip install brainblocks

Run

Begin by running any of the examples found in the examples directory. Here we show converting scalar values into binary patterns using the ScalarTransformer.

python examples/python/transformers/scalar_transformer.py

An abridged version of the script is shown below:

from brainblocks.blocks import ScalarTransformer

# Scalar value sequence
values = [0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0]

# Configure ScalarTransformer
st = ScalarTransformer(
    min_val=0.0, # minimum input value
    max_val=1.0, # maximum input value
    num_s=128,  # number of statelets
    num_as=16)  # number of active statelets

# Convert scalars to distributed binary representation
for i in range(len(values)):

    # Set scalar value and compute
    st.set_value(values[i])
    st.feedforward()
    
    # print scalar value and its binary representation
    print(values[i], st.output.bits)

Development

Build

Alternatively, you can build BrainBlocks on your system following these steps.

Clone the repository

git clone https://github.com/the-aerospace-corporation/brainblocks

Change to the project directory

cd brainblocks

Build and install

pip install .

Build Alternatives

You can build the python packages separately and find them in dist/ if the build package is installed in your environment.

pip install build
python -m build 

We also provide a helper script to build and reinstall BrainBlocks if you are making changes to the core code and want to experiment. This will clean up previous BrainBlocks installations and install fresh from the local code.

python helper.py --install

Tests

Run Python unit tests:

pytest

Build core C++ unit tests

python helper.py --cpptests
cd build/tests/cpp
ls test_*

More Helper Script Options

Clean project directory of build artifacts:

python helper.py --clean

Python unit tests

python helper.py --test

Uninstall from Python environment

python helper.py --uninstall

Just build Python packages

python helper.py --build

Project Layout

.
├── .github                  # Workflow scripts for build, testing, and packaging
├── build                    # Temporary build workspace
├── dist                     # Temporary location of built python packages
├── docs                     # Extra Documentation
├── examples                 # Examples of BrainBlocks usage
│   └── python
│       └── classification   # PatternClassifier examples
│       └── context_learner  # ContextLearner examples
│       └── pooling          # PatternPooler example
│       └── experiments      # Experiments and visualizations
│       └── sequence_learner # SequenceLearner examples
│       └── transformers     # Transformer examples
├── src
│   ├── cpp               # Core C++ code
│   │   └── blocks        # Core C++ block algorithms
│   ├── python            # Python package code
│   │   ├── blocks        # Interface to block primitives
│   │   ├── datasets      # Dataset generation tools
│   │   ├── metrics       # Metrics for binary representations
│   │   ├── templates     # Common architecture templates
│   │   └── tools         # High-level package tools
│   └── wrappers          # Python bindings
├── tests                 # Unit tests
│   ├── cpp               # C++ core unit tests
│   └── python            # Python nit tests
├── .gitignore            # files to exclude from version control
├── CMakeLists.txt        # CMake configuration for core C++ build
├── helper.py             # Helper script
├── LICENSE               # AGPLv3 license
├── MANIFEST.in           # Manifest file for python package
├── pyproject.toml        # Modern build system configuration file
├── README.md             # README file
└── setup.cfg             # setuptools config values
└── setup.py              # setuptools build script

About Us

The Aerospace Corporation

This projected was developed internally at The Aerospace Corporation by:

License

This project is licensed under AGPLv3.

© The Aerospace Corporation 2022

brainblocks's People

Contributors

jacobeverist avatar ddigiorg avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.