2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-11-27 08:47:56 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-11-27 08:47:56 +08:00
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-08 08:28:52 +08:00
|
|
|
class RRsnns(RPackage):
|
2016-11-27 08:47:56 +08:00
|
|
|
"""The Stuttgart Neural Network Simulator (SNNS) is a library containing
|
|
|
|
many standard implementations of neural networks. This package wraps the
|
|
|
|
SNNS functionality to make it available from within R. Using the RSNNS
|
|
|
|
low-level interface, all of the algorithmic functionality and flexibility
|
|
|
|
of SNNS can be accessed. Furthermore, the package contains a convenient
|
|
|
|
high-level interface, so that the most common neural network topologies
|
|
|
|
and learning algorithms integrate seamlessly into R."""
|
|
|
|
|
|
|
|
homepage = "http://sci2s.ugr.es/dicits/software/RSNNS"
|
|
|
|
url = "https://cran.r-project.org/src/contrib/RSNNS_0.4-7.tar.gz"
|
2017-11-06 05:42:24 +08:00
|
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/RSNNS"
|
2016-11-27 08:47:56 +08:00
|
|
|
|
|
|
|
version('0.4-7', 'ade7736611c456effb5f72e0ce0a1e6f')
|
|
|
|
|
2017-01-08 11:59:02 +08:00
|
|
|
depends_on('r-rcpp', type=('build', 'run'))
|