nitin5 / meca

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Maintainability Test Coverage

MECA

This Repository contains the source code of the Multipurpose Enhanced Cognitive Architecture (MECA).

MECA is a Java library to build cognitive architectures / artificial minds for robots and software agents. MECA provides a framework with different capabilities out of the box for artificial minds to be built upon.

MECA has been built on top of the Cognitive Systems Toolkit (CST). It is therefore important to know CST's concepts and how to implement cognitive architectures using CST in order to make a better use of MECA.

Note: This library is still under development, and some concepts or features might not be available yet. Feedback/bug report and Pull Requests are most welcome!

Installation

Gradle

  • Step 1. Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:
	repositories {
			...
			maven { url 'https://jitpack.io' }
	}
  • Step 2. Add the dependency
	dependencies {
            ...
            implementation 'com.github.CST-Group:meca:0.2.1'
	}

Sometimes, the version number (tag) in this README gets out of date, as maintainers might forget to change it when releasing. Always check the release badge to see the actual current version number that should be provided in the dependencies in Step 2 above.

Maven

  • Step 1. Add the JitPack repository to your build file.
	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>
  • Step 2. Add the dependency
	<dependency>
	    <groupId>com.github.CST-Group</groupId>
	    <artifactId>meca</artifactId>
	    <version>0.2.1</version>
	</dependency>

Sometimes, the version number (tag) in this README gets out of date, as maintainers might forget to change it when releasing. Always check the release badge to see the actual current version number that should be provided in the dependencies in Step 2 above.

Manual

Download the latest release and set it as a dependency in your project.

Building the source code

This release uses gradle to download the dependencies from MavenCentral. It does not require you to have gradle installed in your system because it uses the Gradle Wrapper. Depending on your operational system, you might execute the gradlew script or the gradlew.bat script in order to compile the code. You might need the JDK to be properly installed in order to build the code. You should call "gradlew " in order to build the code. Available tasks can be discovered using "gradlew tasks". After calling "gradlew build", the MECA library will be available at build/libs directory.

Changelog / Migrations

Follow the release page to better understand the breaking changes of new versions.

Requirements

MECA requires at minimum Java 8.

Example

To get started, you can take a look at our hands on codelab which teaches you how to use MECA's version 0.0.1. (soon we will provide more examples in the library repository).

Publications

Refer to MECA's publications to better understand the concepts behind the implemented code structures:

This Software was developed in a partnership with Ericsson Research.

About

License:GNU Lesser General Public License v3.0


Languages

Language:Java 100.0%