2929
3030> [ !WARNING]
3131> You are currently on the ` main ` branch which tracks under-development progress
32- > towards the next release. The current release is version [ 2.59.0 ] ( https://github.com/triton-inference-server/server/releases/latest )
33- > and corresponds to the 25.06 container release on NVIDIA GPU Cloud (NGC).
32+ > towards the next release. The current release is version [ 2.59.1 ] ( https://github.com/triton-inference-server/server/releases/latest )
33+ > and corresponds to the 25.07 container release on NVIDIA GPU Cloud (NGC).
3434
3535# Triton Inference Server
3636
@@ -61,7 +61,7 @@ Major features include:
6161- Provides [ Backend API] ( https://github.com/triton-inference-server/backend ) that
6262 allows adding custom backends and pre/post processing operations
6363- Supports writing custom backends in python, a.k.a.
64- [ Python-based backends.] ( https://github.com/triton-inference-server/backend/blob/main /docs/python_based_backends.md#python-based-backends )
64+ [ Python-based backends.] ( https://github.com/triton-inference-server/backend/blob/r25.07 /docs/python_based_backends.md#python-based-backends )
6565- Model pipelines using
6666 [ Ensembling] ( docs/user_guide/architecture.md#ensemble-models ) or [ Business
6767 Logic Scripting
@@ -90,16 +90,16 @@ Inference Server with the
9090
9191``` bash
9292# Step 1: Create the example model repository
93- git clone -b r25.06 https://github.com/triton-inference-server/server.git
93+ git clone -b r25.07 https://github.com/triton-inference-server/server.git
9494cd server/docs/examples
9595./fetch_models.sh
9696
9797# Step 2: Launch triton from the NGC Triton container
98- docker run --gpus=1 --rm --net=host -v ${PWD} /model_repository:/models nvcr.io/nvidia/tritonserver:25.06 -py3 tritonserver --model-repository=/models --model-control-mode explicit --load-model densenet_onnx
98+ docker run --gpus=1 --rm --net=host -v ${PWD} /model_repository:/models nvcr.io/nvidia/tritonserver:25.07 -py3 tritonserver --model-repository=/models --model-control-mode explicit --load-model densenet_onnx
9999
100100# Step 3: Sending an Inference Request
101101# In a separate console, launch the image_client example from the NGC Triton SDK container
102- docker run -it --rm --net=host nvcr.io/nvidia/tritonserver:25.06 -py3-sdk /workspace/install/bin/image_client -m densenet_onnx -c 3 -s INCEPTION /workspace/images/mug.jpg
102+ docker run -it --rm --net=host nvcr.io/nvidia/tritonserver:25.07 -py3-sdk /workspace/install/bin/image_client -m densenet_onnx -c 3 -s INCEPTION /workspace/images/mug.jpg
103103
104104# Inference should return the following
105105Image ' /workspace/images/mug.jpg' :
@@ -173,10 +173,10 @@ configuration](docs/user_guide/model_configuration.md) for the model.
173173 [ Python] ( https://github.com/triton-inference-server/python_backend ) , and more
174174- Not all the above backends are supported on every platform supported by Triton.
175175 Look at the
176- [ Backend-Platform Support Matrix] ( https://github.com/triton-inference-server/backend/blob/main /docs/backend_platform_support_matrix.md )
176+ [ Backend-Platform Support Matrix] ( https://github.com/triton-inference-server/backend/blob/r25.07 /docs/backend_platform_support_matrix.md )
177177 to learn which backends are supported on your target platform.
178178- Learn how to [ optimize performance] ( docs/user_guide/optimization.md ) using the
179- [ Performance Analyzer] ( https://github.com/triton-inference-server/perf_analyzer/blob/main /README.md )
179+ [ Performance Analyzer] ( https://github.com/triton-inference-server/perf_analyzer/blob/r25.07 /README.md )
180180 and
181181 [ Model Analyzer] ( https://github.com/triton-inference-server/model_analyzer )
182182- Learn how to [ manage loading and unloading models] ( docs/user_guide/model_management.md ) in
@@ -190,14 +190,14 @@ A Triton *client* application sends inference and other requests to Triton. The
190190[ Python and C++ client libraries] ( https://github.com/triton-inference-server/client )
191191provide APIs to simplify this communication.
192192
193- - Review client examples for [ C++] ( https://github.com/triton-inference-server/client/blob/main /src/c%2B%2B/examples ) ,
194- [ Python] ( https://github.com/triton-inference-server/client/blob/main /src/python/examples ) ,
195- and [ Java] ( https://github.com/triton-inference-server/client/blob/main /src/java/src/main/java/triton/client/examples )
193+ - Review client examples for [ C++] ( https://github.com/triton-inference-server/client/blob/r25.07 /src/c%2B%2B/examples ) ,
194+ [ Python] ( https://github.com/triton-inference-server/client/blob/r25.07 /src/python/examples ) ,
195+ and [ Java] ( https://github.com/triton-inference-server/client/blob/r25.07 /src/java/src/main/java/triton/client/examples )
196196- Configure [ HTTP] ( https://github.com/triton-inference-server/client#http-options )
197197 and [ gRPC] ( https://github.com/triton-inference-server/client#grpc-options )
198198 client options
199199- Send input data (e.g. a jpeg image) directly to Triton in the [ body of an HTTP
200- request without any additional metadata] ( https://github.com/triton-inference-server/server/blob/main /docs/protocol/extension_binary_data.md#raw-binary-request )
200+ request without any additional metadata] ( https://github.com/triton-inference-server/server/blob/r25.07 /docs/protocol/extension_binary_data.md#raw-binary-request )
201201
202202### Extend Triton
203203
@@ -206,7 +206,7 @@ designed for modularity and flexibility
206206
207207- [ Customize Triton Inference Server container] ( docs/customization_guide/compose.md ) for your use case
208208- [ Create custom backends] ( https://github.com/triton-inference-server/backend )
209- in either [ C/C++] ( https://github.com/triton-inference-server/backend/blob/main /README.md#triton-backend-api )
209+ in either [ C/C++] ( https://github.com/triton-inference-server/backend/blob/r25.07 /README.md#triton-backend-api )
210210 or [ Python] ( https://github.com/triton-inference-server/python_backend )
211211- Create [ decoupled backends and models] ( docs/user_guide/decoupled_models.md ) that can send
212212 multiple responses for a request or not send any responses for a request
@@ -215,7 +215,7 @@ designed for modularity and flexibility
215215 decryption, or conversion
216216- Deploy Triton on [ Jetson and JetPack] ( docs/user_guide/jetson.md )
217217- [ Use Triton on AWS
218- Inferentia] ( https://github.com/triton-inference-server/python_backend/tree/main /inferentia )
218+ Inferentia] ( https://github.com/triton-inference-server/python_backend/tree/r25.07 /inferentia )
219219
220220### Additional Documentation
221221
0 commit comments