/usr/lib/python2.7/dist-packages/fann2-1.0.7.egg-info/PKG-INFO is in python-fann2 1:1.0.7-6build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | Metadata-Version: 1.1
Name: fann2
Version: 1.0.7
Summary: Fast Artificial Neural Network Library (fann) bindings.
Home-page: https://github.com/FutureLinkCorporation/fann2
Author: Gil Megidish, Vincenzo Di Massa and FutureLinkCorporation
Author-email: gil@megidish.net & hawk.it@tiscali,it and devel@futurelinkcorporation.com
License: GNU LESSER GENERAL PUBLIC LICENSE (LGPL)
Description: ======
README
======
fann2
=====
Python bindings for Fast Artificial Neural Networks 2.2.0 (FANN >= 2.2.0). These
are the original python bindings included with FANN 2.1.0beta and updated to
include support for python 2.6-3.4.
DESCRIPTION
===========
This is a python binding for Fast Artificial Neural Network Library (FANN >=
2.2.0) that implements multilayer artificial neural networks with support for
both fully-connected and sparsely-connected networks. It includes a framework
for easy handling of training data sets. It is easy to use, versatile, well-
documented, and fast.
FANN 2.2.0 source
-----------------
- http://sourceforge.net/projects/fann/files/fann/2.2.0/FANN-2.2.0-Source.zip/download
INSTALLATION
============
You can install fann2 from pkgsrc or from pypi, using either pip or
easy_install:
pypi
----
$ pip install fann2
or
$ easy_install fann2
pkgsrc
------
Source installation
...................
Get and install pkgsrc. See `pkgsrc documentation
<http://pkgsrc.org/#index4h1>`_. for platform-specific information.
cd ${PKGSRCDIR}/devel/py-fann2
bmake install
From binaries
.............
Get and install pkgsrc. See `pkgsrc quickstart
<http://pkgsrc.org/#index1h1>`_. for platform-specific information.
pkgin -y install py-fann2
USAGE
=====
Just
>> from fann2 import libfann
and then create libfann.neural_net and libfann.training_data objects
>> ann = libfann.neural_net()
>> train_data = libfann.training_data()
Look at the examples at the FANN documentation and its C++ bindings for further
reference.
LICENSE
=======
As with the original python bindings, this package is distributed under the
terms of the GNU Lesser General Public License, Version 2.1. See LICENSE for
full terms and conditions.
LINKS
=====
`fann2 on pypi
<https://pypi.python.org/pypi/fann2>`_.
`py-fann2 in pkgsrc
<http://pkgsrc.se/devel/py-fann2>`_.
`FANN
<http://leenissen.dk/fann/>`_.
`pkgsrc
<http://pkgsrc.org/>`_.
CONTACT
=======
Send us your patches and pull requests! We will release as often as these
changes are received and integrated. There's no reason to have countless
branches of this package. Consider this the official one and that it's being
maintained!
The pkgsrc package is maintained by us as well. We are active users of FANN and
fann2. If you don't have or want a github account, send your patches for this
package or the pkgsrc version to pkgsrc@futurelinkcorporation.com.
Keywords: ANN,artificial,intelligence,FANN2.2.0,bindings
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
|