Code Monkey home page Code Monkey logo

moosealgos's Introduction

MooseAlgos

Moose Algos contains generic libraries for various analysis algorithms.

Install MooseAlgos

To install MooseAlgos on your Pharo image you can just execute the following script:

Metacello new
    githubUser: 'moosetechnology' project: 'MooseAlgos' commitish: 'master' path: 'src';
    baseline: 'MooseAlgos';
    load

To add MooseAlgos to your baseline just add this:

    spec
    	baseline: 'MooseAlgos'
    	with: [ spec repository: 'github://moosetechnology/MooseAlgos:master/src' ]

Note that you can replace the #master by another branch as #development or a tag as #v1.0.0, #v1.? or #v1.2.? .

Clustering

see https://en.wikipedia.org/wiki/Hierarchical_clustering

Example:

input := #(#(1 2 3 5) #(11 12 15) #(21 22 23 25) #(31 32 35) #(41 42 43 45 47)).
clusty := MalClusterEngine with: input flatten shuffle.
clusty hierarchicalClusteringUsing: #centroid.
clusters := clusty dendrogram breakInto: 5.

Word compacting

Example:

(MalKontractor reduce: 'Hello' upTo: 3) >>> 'Hlo'

Linear algebra

  • operations with matrices

Version management

This project use semantic versionning to define the releases. This mean that each stable release of the project will get associate a version number of the form vX.Y.Z.

  • X define the major version number
  • Y define the minor version number
  • Z define the patch version number

When a release contains only bug fixes, the patch number increase. When the release contains new features backward compatibles, the minor version increase. When the release contains breaking changes, the major version increase.

Thus, it should be safe to depend on a fixed major version and moving minor version of this project.

moosealgos's People

Contributors

andrehora avatar badetitou avatar bergel avatar bocasti avatar chisandrei avatar clotildetoullec avatar demarey avatar dschenk avatar ducasse avatar fabrizioperin avatar girba avatar janniklaval avatar jecisc avatar jordanmontt avatar juliendelplanque avatar jurajkubelka avatar leoperard avatar nicolasanquetil avatar pavel-krivanek avatar sdenier avatar sergestinckwich avatar ubhatti avatar vincentblondeau avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

moosealgos's Issues

Moose-Algos tests depending on random numbers

some tests like MalClusterEngineTest>>#testCentroid are depending on the random numbers. That can cause random not-reproducible failures.

In this particular case it can use shuffleBy: with a static seed

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.