@@ -42,7 +42,6 @@ table = "| 🌟 Framework | 🧩 Backend Agnostic | 🧠 Model Agnostic | 📂
4242table += " |--------------|---------------------|-------------------|---------------|----------------|\n "
4343
4444data = [
45- (" Cortex" , " Yes" , " Yes" , " cortexlabs/cortex" ),
4645 (" BentoML" , " Yes" , " Yes" , " bentoml/bentoml" ),
4746 (" Ray Serve" , " Yes" , " Yes" , " ray-project/ray" ),
4847 (" Triton Inference Server" , " Yes" , " Yes" , " NVIDIA/triton-inference-server" ),
@@ -64,9 +63,9 @@ for framework, backend_agnostic, model_agnostic, repo in data:
6463print (table)
6564```
6665
67- The first 7 frameworks are backend agnostic, meaning that they are intended to work with whatever computational backend
66+ The first 6 frameworks are backend agnostic, meaning that they are intended to work with whatever computational backend
6867your model is implemented in (TensorFlow, PyTorch, Jax, Sklearn, etc.), whereas the last 3 are backend specific (PyTorch,
69- TensorFlow and a custom framework). The first 9 frameworks are model agnostic, meaning that they are intended to work
68+ TensorFlow and a custom framework). The first 8 frameworks are model agnostic, meaning that they are intended to work
7069with whatever model you have implemented, whereas the last one is model specific in this case to LLM's. When choosing a
7170framework to deploy your model, you should consider the following:
7271
0 commit comments