Sshesinshes.hashnode.dev·Oct 12, 2022 · 4 min readWhy I decided to use NVIDIA Triton for inferenceNeural networks are cool. They can solve various tasks and are used everywhere. Let's image you have trained one for medicine. It performs well. What's next? Nobody has access to it yet. You need somehow to inference it. I've faced the same problem. ...00
Sshesinshes.hashnode.dev·Jul 19, 2022 · 3 min readMethods to enable environments in Docker ComposeIn this blog post I'll show two methods how to enable different environments in Docker Compose and which of them I prefer most. I use Docker Compose when I need to run a multi-container Docker application. Often I need to have different setups for di...00
Sshesinshes.hashnode.dev·Jun 19, 2022 · 1 min readReplicate containers with Docker ComposeI have always wondered why Docker Compose adds ones at the end of a container name. Compose allows you to scale your application by creating replicas of containers. This is controlled by the replicas parameter. Here is the example: services: queu...00