44Design the pipeline that retrains and redeploys a model nightly. What makes it different from a normal CD pipeline?▼hardNewDatabricksUberNetflix2 replies◆ premiumThe code did not change, the data did. That inverts what triggers the pipeline, what the tests assert, and what a rollback means.Open full answer →
31A team wants to fine-tune a model every time their labelled data grows. Build them the pipeline.▼hardNewDatabricksSalesforceSnowflake2 replies◆ premiumThe training part is a job. Everything around it is the pipeline: data snapshots that are immutable, an evaluation gate with a threshold set in advance, and adapters versioned so a bad one is a routing change away from gone.Open full answer →
46You need to run a model over 200 million documents. How do you design that, and what does it cost?▼hardNewSnowflakeDatabricksNetflix2 replies◆ premiumNobody is waiting, which changes every constraint. Latency stops mattering, throughput per dollar becomes the only metric, and the design converges on something that looks like a data pipeline rather than a service.Open full answer →