added version to the banner; added release notes

pull/4/head
Kai Staats 2015-11-04 14:26:54 +02:00
parent 5ce5d40f84
commit b800559fba
4 changed files with 17 additions and 1 deletions

13
RELEASE_NOTES.txt 100644
View File

@ -0,0 +1,13 @@
2015 11/04
Initial development of Karoo GP began in February 2015, on a Python-based evolutionary algorithm for an MSc research project at the University of Cape Town (UCT) / African Institute for Mathematical Sciences (AIMS) and the Square Kilometer Array (SKA). The myriad debug statements evolved into the user interface and the classic Machine Learning test cases into the built-in example runs.
In the end, Karoo GP became a fairly flexible, easy-to-use platform for Genetic Programming.
With all development conducted locally, this version 0.9 marks the first release to GitHub.
This initial release is private, with select collaborators only.
Once a paper is published in conjunction with Karoo GP, the repository will be made public.

View File

@ -2,6 +2,7 @@
# Define the Karoo GP methods and global variables
# by Kai Staats, MSc UCT / AIMS
# Much thanks to Emmanuel Dufourq and Arun Kumar for their support, guidance, and free psychotherapy sessions
# version 0.9
import csv
import os
@ -186,7 +187,7 @@ class Base_GP(object):
print '\t ** ** ** ** ** ** ** ** ** ** ** ** **'
print '\t ** ** ** ** ** ** ****** ****** ****** **'
print '\033[0;0m'
print '\t\033[36m Genetic Programming in Python - by Kai Staats\033[0;0m'
print '\t\033[36m Genetic Programming in Python - by Kai Staats, version 0.9\033[0;0m'
if run == 'server':
print '\n\t Type \033[1m?\033[0;0m to configure Karoo GP before your run, or \033[1mENTER\033[0;0m to continue.\033[0;0m'

View File

@ -2,6 +2,7 @@
# Use Genetic Programming for Classification and Symbolic Regression
# by Kai Staats, MSc UCT / AIMS
# Much thanks to Emmanuel Dufourq and Arun Kumar for their support, guidance, and free psychotherapy sessions
# version 0.9
'''
A NOTE TO THE NEWBIE, EXPERT, AND BRAVE

View File

@ -2,6 +2,7 @@
# Use Genetic Programming for Classification and Symbolic Regression
# by Kai Staats, MSc UCT / AIMS
# Much thanks to Emmanuel Dufourq and Arun Kumar for their support, guidance, and free psychotherapy sessions
# version 0.9
import sys # sys.path.append('modules/') # add the directory 'modules' to the current path
import karoo_gp_base_class; gp = karoo_gp_base_class.Base_GP()