tune-duel / models.yaml
gokceuludogan's picture
initial commit
7f8c6a3
raw
history blame contribute delete
577 Bytes
# 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