Bug 184572 - [NEW PORT] science/py-pyaixi: Implementation of the MC-AIXI-CTW AI algorithm
Summary: [NEW PORT] science/py-pyaixi: Implementation of the MC-AIXI-CTW AI algorithm
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: William Grzybowski
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-12-07 17:00 UTC by Johannes Meixner
Modified: 2013-12-08 14:20 UTC (History)
0 users

See Also:


Attachments
.shar (2.34 KB, text/plain)
2013-12-07 17:00 UTC, Johannes Meixner
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Johannes Meixner 2013-12-07 17:00:04 UTC
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

Generated with FreeBSD Port Tools 0.99_8 (mode: new)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-12-07 17:00:32 UTC
Responsible Changed
From-To: freebsd-ports-bugs->freebsd-python

freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 William Grzybowski freebsd_committer freebsd_triage 2013-12-08 14:12:35 UTC
Responsible Changed
From-To: freebsd-python->wg

I'll take it.
Comment 3 William Grzybowski freebsd_committer freebsd_triage 2013-12-08 14:12:52 UTC
State Changed
From-To: open->closed

New port added. Thanks!
Comment 4 dfilter service freebsd_committer freebsd_triage 2013-12-08 14:13:00 UTC
Author: wg
Date: Sun Dec  8 14:12:47 2013
New Revision: 335895
URL: http://svnweb.freebsd.org/changeset/ports/335895

Log:
  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>

Added:
  head/science/py-pyaixi/
  head/science/py-pyaixi/Makefile   (contents, props changed)
  head/science/py-pyaixi/distinfo   (contents, props changed)
  head/science/py-pyaixi/pkg-descr   (contents, props changed)
Modified:
  head/science/Makefile

Modified: head/science/Makefile
==============================================================================
--- head/science/Makefile	Sun Dec  8 14:11:54 2013	(r335894)
+++ head/science/Makefile	Sun Dec  8 14:12:47 2013	(r335895)
@@ -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

Added: head/science/py-pyaixi/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/py-pyaixi/Makefile	Sun Dec  8 14:12:47 2013	(r335895)
@@ -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>

Added: head/science/py-pyaixi/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/py-pyaixi/distinfo	Sun Dec  8 14:12:47 2013	(r335895)
@@ -0,0 +1,2 @@
+SHA256 (pyaixi-1.0.3.tar.gz) = 5d58cd3162740dbf082c16c4a8f377169e6dc4643a1848a4f3a793310ad261db
+SIZE (pyaixi-1.0.3.tar.gz) = 48553

Added: head/science/py-pyaixi/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/py-pyaixi/pkg-descr	Sun Dec  8 14:12:47 2013	(r335895)
@@ -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
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"