Spaces:
Sleeping
Sleeping
| # List your models here. Each model can be: | |
| # - http: POST to endpoint with JSON {"song_ratings": [...]} → expects {"items": ["id1","id2",...]} | |
| # - python: dotted path to a callable(song_ratings) -> List[Tuple[str, str]] | |
| models: | |
| - name: team_alpha | |
| type: python | |
| callable: "team_alpha.src.recommender.query" | |
| topk: 5 | |
| timeout: 8 | |
| - name: team_beta | |
| type: python | |
| callable: "team_beta.src.recommender.query" | |
| topk: 5 | |
| timeout: 8 | |
| - name: team_gamma | |
| type: python | |
| callable: "team_gamma.src.recommender.query" | |
| topk: 5 | |
| timeout: 8 | |