Skip to content

Latest commit

 

History

History
55 lines (43 loc) · 1.04 KB

README.md

File metadata and controls

55 lines (43 loc) · 1.04 KB

K-MEANS

Description

Clojure implementation of K-means algorithm.

Overview

  • Directory structure
  • Features
  • How to contribute to this library?
  • How to build the library to be used in production-ready projects?
  • How to use ?

Directory structure

.
├── CHANGELOG.md
├── LICENSE
├── README.md
├── doc
│   └── intro.md
├── k-means.iml
├── project.clj
├── resources
├── src
│   └── k_means
│       └── core.clj
├── target
│   ├── classes
│   │   └── META-INF
│   │       └── maven
│   │           └── k-means
│   │               └── k-means
│   │                   └── pom.properties
│   ├── repl-port
│   └── stale
│       └── leiningen.core.classpath.extract-native-dependencies
└── test
    └── k_means
        └── core_test.clj

How to build the library to be used in production-ready projects?

TBA

How to use ?

TBA

Useful commands

TBA