Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fchauvel/xscf
A C++ implementation of the XCSF learning classifiers
https://github.com/fchauvel/xscf
Last synced: 13 days ago
JSON representation
A C++ implementation of the XCSF learning classifiers
- Host: GitHub
- URL: https://github.com/fchauvel/xscf
- Owner: fchauvel
- License: gpl-3.0
- Created: 2017-03-21T20:52:41.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-18T12:00:59.000Z (about 7 years ago)
- Last Synced: 2024-10-05T21:07:02.164Z (3 months ago)
- Language: C++
- Homepage:
- Size: 173 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
XCSF
====.. image:: https://app.wercker.com/status/87ebe60ed512a2bd4c033ce2ab3d458c/s/master
:target: https://app.wercker.com/project/byKey/87ebe60ed512a2bd4c033ce2ab3d458c.. image:: https://img.shields.io/codecov/c/github/fchauvel/XSCF/master.svg
:target: https://codecov.io/gh/fchauvel/XSCF.. image:: https://img.shields.io/codacy/grade/39d92ac4cff743819043c34994b30112.svg
:target: https://www.codacy.com/app/fchauvel/XSCFThis is a simple C++ implementation of accuracy-based learning
classifiers systems, which operate on real-valued domain, inspired by
S. Wilson's approach [Wilson_2002]_.Building the Binaries
---------------------To build XCSF from the source code, you only need a C++ compiler, and
Make, a tool to automate compulation. As both are on most
repositories, you may use commands such as (on Debian):.. code-block:: console
$ apt-get install g++
$ apt-get install makeXCSF depends on the CppUTest_ library, which you will need to install
if you want to build the application from the sources... code-block:: console
$ apt-get install CppUTest
You can now build the binaries by using:
.. code-block:: console
$ make
References
----------.. [Wilson_2002] Stewart W. Wilson. Classifiers that Approximate
Functions. Natural Computing. 1: 211 |--| 233, 2002... |--| unicode:: U+2013
:trim:.. _CppUTest: https://cpputest.github.io/