1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

science/py-pyaixi: Implementation of the MC-AIXI-CTW AI algorithm

pyaixi is a pure Python implementation of the Monte Carlo-AIXI-Context Tree
Weighting (MC-AIXI-CTW) artificial intelligence algorithm.

This is an approximation of the AIXI universal artificial intelligence
algorithm, which describes a model-based, reinforcement-learning agent capable
of general learning.

WWW: https://github.com/gkassel/pyaixi

PR:		ports/184572
Submitted by:	Johannes Jost Meixner <xmj chaot.net>
This commit is contained in:
William Grzybowski 2013-12-08 14:12:47 +00:00
parent be895b6b4a
commit 15cf2023b6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=335895
4 changed files with 52 additions and 0 deletions

View File

@ -156,6 +156,7 @@
SUBDIR += py-obspy
SUBDIR += py-paida
SUBDIR += py-pupynere
SUBDIR += py-pyaixi
SUBDIR += py-pydap
SUBDIR += py-pydicom
SUBDIR += py-scikit-learn

View File

@ -0,0 +1,41 @@
# Created by: Johannes Meixner <xmj@chaot.net>
# $FreeBSD$
PORTNAME= pyaixi
PORTVERSION= 1.0.3
CATEGORIES= science python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= xmj@chaot.net
COMMENT= Implementation of the MC-AIXI-CTW AI algorithm
LICENSE= CCbySA
LICENSE_NAME= Creative Commons Attribution-ShareAlike 3.0 \
Unported License
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
LICENSE_PERMS= auto-accept dist-mirror pkg-mirror pkg-sell dist-sell
USES= dos2unix
USE_PYTHON= 2.7
USE_PYDISTUTILS= yes
PYDISTUTILS_AUTOPLIST= yes
PORTDOCS= changelog.txt \
todo.txt
PORTEXAMPLES= *
OPTIONS_DEFINE= DOCS EXAMPLES
EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME}
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} \
${STAGEDIR}${DOCSDIR}
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/conf/|} \
${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (pyaixi-1.0.3.tar.gz) = 5d58cd3162740dbf082c16c4a8f377169e6dc4643a1848a4f3a793310ad261db
SIZE (pyaixi-1.0.3.tar.gz) = 48553

View File

@ -0,0 +1,8 @@
pyaixi is a pure Python implementation of the Monte Carlo-AIXI-Context Tree Weighting
(MC-AIXI-CTW) artificial intelligence algorithm.
This is an approximation of the AIXI universal artificial intelligence
algorithm, which describes a model-based, reinforcement-learning agent capable
of general learning.
WWW: https://github.com/gkassel/pyaixi