|
|
|
|
|
by greatpostman
1528 days ago
|
|
I’ve built one of these at FAANG. Generally the different parts of the system are completely separate teams that interact through apis and ingest systems. Usually there’s a mix of online and offline calculations, where features are stored in a nosqldb and some simple model runs in a tomcat server at inference time, or the offline result is just retrieved. Almost everything is precomputed. We had an api layer where another team runs inference on their model as new user data comes in, then streams it to our api which inboards the data. On top of this, you have extensive A/B testing systems |
|