Package | Description |
---|---|
es.uam.eps.ir.ranksys.fast.feature |
Fast versions of FeatureData.
|
es.uam.eps.ir.ranksys.fast.index |
Fast versions of user/item/feature indexes.
|
Modifier and Type | Interface and Description |
---|---|
interface |
FastFeatureData<I,F,V>
Fast version of FeatureData, where item-feature relationships are
stored internally by the indexes provided by FastItemIndex and FastFeatureIndex.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractFastFeatureData<I,F,V>
Abstract FastFeatureData, implementing the interfaces of FastItemIndex and
FastFeatureIndex by delegating to implementations of these.
|
class |
SimpleFastFeatureData<I,F,V>
Simple implementation of FastFeatureData backed by nested lists.
|
Modifier and Type | Method and Description |
---|---|
static <I,F,V> SimpleFastFeatureData<I,F,V> |
SimpleFastFeatureData.load(Stream<org.jooq.lambda.tuple.Tuple3<I,F,V>> tuples,
FastItemIndex<I> iIndex,
FastFeatureIndex<F> fIndex)
Loads a SimpleFastFeatureData by processing a stream of item-feature-value triples.
|
Constructor and Description |
---|
AbstractFastFeatureData(FastItemIndex<I> ii,
FastFeatureIndex<F> fi)
Constructor.
|
SimpleFastFeatureData(List<List<Tuple2io<V>>> iidxList,
List<List<Tuple2io<V>>> fidxList,
FastItemIndex<I> ii,
FastFeatureIndex<F> fi)
Constructor.
|
Modifier and Type | Class and Description |
---|---|
class |
SimpleFastFeatureIndex<F>
Simple implementation of FastFeatureIndex backed by a bi-map IdxIndex
|
Copyright © 2016. All rights reserved.