Package | Description |
---|---|
com.cloudera.oryx.app.serving |
Contains common code supporting several implementations of an app-tier Serving Layer.
|
com.cloudera.oryx.app.serving.als |
Contains an app tier implementation of a Serving Layer, for ALS recommendation.
|
com.cloudera.oryx.app.serving.classreg |
Contains app tier support code for implementations of classification and
regression in the Serving Layer.
|
com.cloudera.oryx.app.serving.clustering | |
com.cloudera.oryx.app.serving.kmeans |
Contains an app tier implementation of a Serving Layer, for k-means clustering.
|
com.cloudera.oryx.app.serving.rdf |
Contains an app tier implementation of a Serving Layer, for random decision forest
classification and regression.
|
com.cloudera.oryx.example.serving |
Contains a minimal example of what a user application would create to implement a
Serving Layer.
|
com.cloudera.oryx.lambda.serving |
Contains the core support for the Lambda tier of the Serving Layers.
|
Modifier and Type | Method and Description |
---|---|
protected static void |
AbstractOryxResource.check(boolean condition,
javax.ws.rs.core.Response.Status status,
String errorMessage) |
protected static void |
AbstractOryxResource.check(boolean condition,
String errorMessage) |
protected static void |
AbstractOryxResource.checkExists(boolean condition,
String entity) |
protected void |
AbstractOryxResource.checkNotReadOnly() |
javax.ws.rs.core.Response |
Ready.get() |
protected ServingModel |
AbstractOryxResource.getServingModel() |
javax.ws.rs.core.Response |
Ready.head() |
protected Collection<javax.servlet.http.Part> |
AbstractOryxResource.parseMultipart(javax.servlet.http.HttpServletRequest request) |
Modifier and Type | Method and Description |
---|---|
void |
Preference.delete(String userID,
String itemID) |
Collection<String> |
AllUserIDs.get() |
Collection<String> |
AllItemIDs.get() |
List<String> |
PopularRepresentativeItems.get() |
List<IDCount> |
MostPopularItems.get(int howMany,
int offset,
List<String> rescorerParams) |
List<IDCount> |
MostActiveUsers.get(int howMany,
int offset,
List<String> rescorerParams) |
List<IDValue> |
RecommendToMany.get(List<javax.ws.rs.core.PathSegment> pathSegmentsList,
int howMany,
int offset,
boolean considerKnownItems,
List<String> rescorerParams) |
List<IDValue> |
Similarity.get(List<javax.ws.rs.core.PathSegment> pathSegmentsList,
int howMany,
int offset,
List<String> rescorerParams) |
List<IDValue> |
RecommendToAnonymous.get(List<javax.ws.rs.core.PathSegment> pathSegments,
int howMany,
int offset,
List<String> rescorerParams) |
Collection<String> |
KnownItems.get(String userID) |
List<IDValue> |
MostSurprising.get(String userID,
int howMany,
int offset) |
List<IDValue> |
Recommend.get(String userID,
int howMany,
int offset,
boolean considerKnownItems,
List<String> rescorerParams) |
List<Double> |
Estimate.get(String userID,
List<javax.ws.rs.core.PathSegment> pathSegmentsList) |
Double |
EstimateForAnonymous.get(String toItemID,
List<javax.ws.rs.core.PathSegment> pathSegments) |
List<Double> |
SimilarityToItem.get(String toItemID,
List<javax.ws.rs.core.PathSegment> pathSegmentsList) |
List<IDValue> |
RecommendWithContext.get(String userID,
List<javax.ws.rs.core.PathSegment> pathSegments,
int howMany,
int offset,
boolean considerKnownItems,
List<String> rescorerParams) |
List<IDValue> |
Because.get(String userID,
String itemID,
int howMany,
int offset) |
void |
Ingest.post(javax.servlet.http.HttpServletRequest request) |
void |
Ingest.post(Reader reader) |
void |
Preference.post(String userID,
String itemID,
Reader reader) |
Modifier and Type | Method and Description |
---|---|
String |
Predict.get(String datum) |
List<String> |
Predict.post(javax.servlet.http.HttpServletRequest request) |
void |
Train.post(javax.servlet.http.HttpServletRequest request) |
List<String> |
Predict.post(Reader reader) |
void |
Train.post(Reader reader) |
void |
Train.post(String datum) |
Modifier and Type | Method and Description |
---|---|
String |
Assign.get(String datum) |
void |
Add.post(javax.servlet.http.HttpServletRequest request) |
List<String> |
Assign.post(javax.servlet.http.HttpServletRequest request) |
void |
Add.post(Reader reader) |
List<String> |
Assign.post(Reader reader) |
void |
Add.post(String datum) |
Modifier and Type | Method and Description |
---|---|
String |
DistanceToNearest.get(String datum) |
Modifier and Type | Method and Description |
---|---|
List<IDValue> |
ClassificationDistribution.get(String datum) |
List<Double> |
FeatureImportance.getAllImportances() |
Double |
FeatureImportance.getImportance(int featureNumber) |
Modifier and Type | Method and Description |
---|---|
int |
Distinct.get(String word) |
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
OryxExceptionMapper.toResponse(OryxServingException exception) |
Copyright © 2014–2018. All rights reserved.