Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wildart/lmclus
Linear Manifold Clustering algorithm
https://github.com/wildart/lmclus
Last synced: 20 days ago
JSON representation
Linear Manifold Clustering algorithm
- Host: GitHub
- URL: https://github.com/wildart/lmclus
- Owner: wildart
- Created: 2013-02-27T20:56:40.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-03T06:36:11.000Z (over 10 years ago)
- Last Synced: 2023-10-20T23:48:10.948Z (about 1 year ago)
- Language: C++
- Size: 1.25 MB
- Stars: 3
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
LMCLUS
======LMCLUS is a linear manifold clustering algorithm, developed by Rave Harpaz.
Current repository contains LMCLUS C++ library and R extensions.Installation
============Clone this repository
$ git clone https://github.com/wildart/lmclus.git
For building R extensions package, run following command:
$ R CMD INSTALL lmclus
For building LMCLUS as shared library, CMake (www.cmake.org) need to be installed. Build from the command line:
$ cd lmclus
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release ..
$ make
$ make testDependencies
------------* gcc (>= 4.7.2)
* R (>= 2.15.0) or BLAS (or MKL optional)Licence
=======
Licensed under the LGPL, Version 3.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.gnu.org/copyleft/lesser.html
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.