aexol-studio
/
recommendation_hybrid_minko
- Public
- 10 runs
Run aexol-studio/recommendation_hybrid_minko with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
url |
string
|
Minko API URL
|
|
login |
string
|
Minko API Login
|
|
password |
string
|
Minko API Password
|
|
user_id |
string
|
User ID
|
|
top_n |
integer
|
10
|
Number of top recommendation to return
|
prediction |
string
(enum)
|
items
Options: items, users, both |
Prediction type: items (only items), users (only users), both (items and users)
|
pretrained |
boolean
|
False
|
Whether to use a pretrained models
|
show_metrics |
boolean
|
False
|
Whether to show the evaluation metrics
|
{
"type": "object",
"title": "Input",
"required": [
"url",
"login",
"password",
"user_id"
],
"properties": {
"url": {
"type": "string",
"title": "Url",
"format": "password",
"x-order": 0,
"description": "Minko API URL",
"x-cog-secret": true
},
"login": {
"type": "string",
"title": "Login",
"format": "password",
"x-order": 1,
"description": "Minko API Login",
"x-cog-secret": true
},
"top_n": {
"type": "integer",
"title": "Top N",
"default": 10,
"x-order": 4,
"description": "Number of top recommendation to return"
},
"user_id": {
"type": "string",
"title": "User Id",
"x-order": 3,
"description": "User ID"
},
"password": {
"type": "string",
"title": "Password",
"format": "password",
"x-order": 2,
"description": "Minko API Password",
"x-cog-secret": true
},
"prediction": {
"enum": [
"items",
"users",
"both"
],
"type": "string",
"title": "prediction",
"description": "Prediction type: items (only items), users (only users), both (items and users)",
"default": "items",
"x-order": 5
},
"pretrained": {
"type": "boolean",
"title": "Pretrained",
"default": false,
"x-order": 6,
"description": "Whether to use a pretrained models"
},
"show_metrics": {
"type": "boolean",
"title": "Show Metrics",
"default": false,
"x-order": 7,
"description": "Whether to show the evaluation metrics"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output"
}