Revision 4618aaf358b3c6cb83dc1647bc8ee1b44bd75fc9 authored by YujiOshima on 17 September 2018, 08:08:50 UTC, committed by YujiOshima on 17 September 2018, 08:08:50 UTC
Signed-off-by: YujiOshima <yuji.oshima0x3fd@gmail.com>
1 parent b1afac0
Raw File
developer-guide.md
# Developer Guide

## Requirements

- Docker (17.05 or later.)

## Build from source code

You can build all images from source.

```bash
./scripts/build.sh
```

## Implement new suggestion algorithm

Suggestion API is defined as GRPC service at `API/api.proto`.
You can attach new algorithm easily.

- implement suggestion API
- make k8s service named vizier-suggestion-{ algorithm-name } and expose port 6789

And to add new suggestion service, you don't need to stop components ( vizier-core, modeldb, and anything) that are already running.
back to top