-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.73 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup
setup(
name="sds",
version="2.0.1",
packages=["sds"],
description="Stochastic Diffusion Search",
keywords=["swarm", "artificial", "intelligence", "search"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
url="http://www.aomartin.co.uk/sds-library/",
author="Andrew Owen Martin",
author_email="andrew@aomartin.co.uk",
long_description="""\
A library which implements the main variants of Stochastic Diffusion
Search (SDS), and provides a convenient front end.
Stochastic Diffusion Search (SDS) is a generic population-based search method.
SDS agents perform cheap, partial evaluations of a hypothesis (a candidate
solution to the search problem). Hypotheses with the potential to be strong
solutions are then diffused through the swarm through direct one-to-one
communication. As a result of the diffusion mechanism, high-quality solutions
can be identified from clusters of agents with the same hypothesis.
This is a library used during the writing of my PhD thesis, full documentation
and code are both published online.
SDS has a Scholarpedia page:
http://www.scholarpedia.org/article/Stochastic_diffusion_search
A list of papers written on SDS can be found in the Stochastic Diffusion
Search paper repository, maintained by the author of this module:
http://aomartin.ddns.net/sds-repository/publications.html
""",
)