Package | Description |
---|---|
org.ranksys.formats.feature |
Write and read format for FeatureData.
|
org.ranksys.formats.index |
Write and read format for (User|Item|Feature)Index.
|
org.ranksys.formats.parsing |
String parsers.
|
org.ranksys.formats.preference |
Write and read format for preferences.
|
org.ranksys.formats.rec |
Write and read format for recommendations in files.
|
Modifier and Type | Method and Description |
---|---|
<I,F> Stream<org.jooq.lambda.tuple.Tuple3<I,F,Double>> |
FeaturesReader.read(InputStream in,
Parser<I> ip,
Parser<F> fp)
Reads item-feature-value triples from an input stream.
|
<I,F> Stream<org.jooq.lambda.tuple.Tuple3<I,F,Double>> |
FeaturesReader.read(InputStream in,
Parser<I> ip,
Parser<F> fp)
Reads item-feature-value triples from an input stream.
|
<I,F> Stream<org.jooq.lambda.tuple.Tuple3<I,F,Double>> |
SimpleFeaturesReader.read(InputStream in,
Parser<I> ip,
Parser<F> fp) |
<I,F> Stream<org.jooq.lambda.tuple.Tuple3<I,F,Double>> |
SimpleFeaturesReader.read(InputStream in,
Parser<I> ip,
Parser<F> fp) |
default <I,F> Stream<org.jooq.lambda.tuple.Tuple3<I,F,Double>> |
FeaturesReader.read(String in,
Parser<I> ip,
Parser<F> fp)
Reads item-feature-value triples from a file.
|
default <I,F> Stream<org.jooq.lambda.tuple.Tuple3<I,F,Double>> |
FeaturesReader.read(String in,
Parser<I> ip,
Parser<F> fp)
Reads item-feature-value triples from a file.
|
<I,F> Stream<org.jooq.lambda.tuple.Tuple3<I,F,Double>> |
SimpleFeaturesReader.read(String in,
Parser<I> ip,
Parser<F> fp) |
<I,F> Stream<org.jooq.lambda.tuple.Tuple3<I,F,Double>> |
SimpleFeaturesReader.read(String in,
Parser<I> ip,
Parser<F> fp) |
Modifier and Type | Method and Description |
---|---|
static <F> Stream<F> |
FeatsReader.read(InputStream in,
Parser<F> fp)
Reads a list of feature values from an input stream.
|
static <I> Stream<I> |
ItemsReader.read(InputStream in,
Parser<I> ip)
Reads a list of items from an input stream.
|
static <U> Stream<U> |
UsersReader.read(InputStream in,
Parser<U> up)
Reads a list of users from an input stream.
|
static <F> Stream<F> |
FeatsReader.read(String path,
Parser<F> fp)
Reads a list of feature values from a file.
|
static <I> Stream<I> |
ItemsReader.read(String path,
Parser<I> ip)
Reads a list of items from a file.
|
static <U> Stream<U> |
UsersReader.read(String path,
Parser<U> up)
Reads a list of users from a file.
|
Modifier and Type | Field and Description |
---|---|
static Parser<Double> |
Parsers.dp
Parse to Double.
|
static Parser<Float> |
Parsers.fp
Parse to Float.
|
static Parser<Integer> |
Parsers.ip
Parse to Integer.
|
static Parser<Long> |
Parsers.lp
Parse to Long.
|
static Parser<String> |
Parsers.sp
Parse to String.
|
static Parser<Void> |
Parsers.vp
Parse to Void.
|
Modifier and Type | Method and Description |
---|---|
<U,I> Stream<org.jooq.lambda.tuple.Tuple3<U,I,Double>> |
SimpleRatingPreferencesReader.read(InputStream in,
Parser<U> up,
Parser<I> ip) |
<U,I> Stream<org.jooq.lambda.tuple.Tuple3<U,I,Double>> |
SimpleRatingPreferencesReader.read(InputStream in,
Parser<U> up,
Parser<I> ip) |
<U,I> Stream<org.jooq.lambda.tuple.Tuple3<U,I,Double>> |
SimpleBinaryPreferencesReader.read(InputStream in,
Parser<U> up,
Parser<I> ip) |
<U,I> Stream<org.jooq.lambda.tuple.Tuple3<U,I,Double>> |
SimpleBinaryPreferencesReader.read(InputStream in,
Parser<U> up,
Parser<I> ip) |
<U,I> Stream<org.jooq.lambda.tuple.Tuple3<U,I,Double>> |
PreferencesReader.read(InputStream in,
Parser<U> up,
Parser<I> ip)
Reads preferences from an input stream.
|
<U,I> Stream<org.jooq.lambda.tuple.Tuple3<U,I,Double>> |
PreferencesReader.read(InputStream in,
Parser<U> up,
Parser<I> ip)
Reads preferences from an input stream.
|
default <U,I> Stream<org.jooq.lambda.tuple.Tuple3<U,I,Double>> |
PreferencesReader.read(String in,
Parser<U> up,
Parser<I> ip)
Reads preferences from a file.
|
default <U,I> Stream<org.jooq.lambda.tuple.Tuple3<U,I,Double>> |
PreferencesReader.read(String in,
Parser<U> up,
Parser<I> ip)
Reads preferences from a file.
|
Constructor and Description |
---|
MahoutRecommendationFormat(Parser<U> uParser,
Parser<I> iParser)
Constructor.
|
MahoutRecommendationFormat(Parser<U> uParser,
Parser<I> iParser)
Constructor.
|
SimpleRecommendationFormat(Parser<U> uParser,
Parser<I> iParser)
Constructor.
|
SimpleRecommendationFormat(Parser<U> uParser,
Parser<I> iParser)
Constructor.
|
SimpleRecommendationFormat(Parser<U> uParser,
Parser<I> iParser,
boolean sortByDecreasingScore)
Constructor.
|
SimpleRecommendationFormat(Parser<U> uParser,
Parser<I> iParser,
boolean sortByDecreasingScore)
Constructor.
|
TRECRecommendationFormat(Parser<U> uParser,
Parser<I> iParser)
Constructor.
|
TRECRecommendationFormat(Parser<U> uParser,
Parser<I> iParser)
Constructor.
|
TRECRecommendationFormat(Parser<U> uParser,
Parser<I> iParser,
boolean sortByDecreasingScore)
Constructor.
|
TRECRecommendationFormat(Parser<U> uParser,
Parser<I> iParser,
boolean sortByDecreasingScore)
Constructor.
|
ZipRecommendationFormat(Parser<U> uParser,
Parser<I> iParser,
boolean ignoreScores)
Constructor.
|
ZipRecommendationFormat(Parser<U> uParser,
Parser<I> iParser,
boolean ignoreScores)
Constructor.
|
ZipRecommendationFormat(Parser<U> uParser,
Parser<I> iParser,
boolean ignoreScores,
boolean sortByDecreasingScore)
Constructor.
|
ZipRecommendationFormat(Parser<U> uParser,
Parser<I> iParser,
boolean ignoreScores,
boolean sortByDecreasingScore)
Constructor.
|
Copyright © 2016. All rights reserved.