DOC

org.reco4j : reco4j-core

Maven & Gradle

Sep 22, 2013

reco4j-core · Reco4j is an open source project aims at developing a recommendation framework based on graph data sources. We choose graph databases for several reasons. They are NoSQL databases, so "schemaless". This means that it is possible to extend the basic data structure with intermediate information, i.e. similarity value between item and so on. Moreover, since every information is expressed with properties, nodes and relations, the recommendation process can be customized to work on every graph. Reco4j can be used on every graph where "user" and "item" is represented by node and the preferences are modelled as relationship between them. Current implementation leverage on Neo4j as first graph database integrated in our framework.

Table Of Contents

Latest Version

Download org.reco4j : reco4j-core Javadoc & API Documentation - Latest Versions:

All Versions

Download org.reco4j : reco4j-core Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
0.5.x
0.4.x
0.3.x
0.2.x
0.1.x

How to open Javadoc JAR file in web browser

  1. Rename the file reco4j-core-0.5.0-javadoc.jar to reco4j-core-0.5.0-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder reco4j-core-0.5.0-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "reco4j-core-0.5.0-sources.jar" -d "reco4j-core-0.5.0-javadoc" -subpackages 

Advertisement