Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit f49503c

Browse files
author
DEKHTIARJonathan
committed
Fix dead links
1 parent a5ef604 commit f49503c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ performance of TF-TRT. For more information see
1616

1717
## Examples
1818

19-
* [Image Classification](tftrt/examples/image_classification)
20-
* [Object Detection](tftrt/examples/object_detection)
19+
* [Image Classification](tftrt/benchmarking-python/image_classification)
20+
* [Object Detection](tftrt/benchmarking-python/object_detection)
2121

2222

2323
# Using TensorRT in TensorFlow (TF-TRT)
@@ -38,7 +38,7 @@ If you want to use TF-TRT on NVIDIA Jetson platform, you can find
3838
the download links for the relevant Tensorflow pip packages here:
3939
https://docs.nvidia.com/deeplearning/dgx/index.html#installing-frameworks-for-jetson
4040

41-
You can also use [NVIDIA's Tensorflow container](https://catalog.ngc.nvidia.com/orgs/nvidia/containers/tensorflow)(tested and published monthly).
41+
You can also use [NVIDIA's Tensorflow container](https://catalog.ngc.nvidia.com/orgs/nvidia/containers/tensorflow)(tested and published monthly).
4242

4343
## Installing TensorRT
4444

tests/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def assertNotRaises(self, exc_type):
2323
raise self.failureException('{} raised'.format(exc_type.__name__))
2424

2525

26-
_excludes_paths = ["tftrt/blog_posts/", "tftrt/examples/third_party"]
26+
_excludes_paths = ["tftrt/blog_posts/"]
2727

2828

2929
def list_all_py_files():

tftrt/benchmarking-cpp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Benchmark Runner
22

3-
This straightforward example uses TF's C++ API to serve a saved model and measure throughput. Built off of the [example here](https://github.com/tensorflow/tensorrt/tree/fb0a2cf638c8707041e42451c601247f04c7e6d8/tftrt/examples/cpp/image-classification).
3+
This straightforward example uses TF's C++ API to serve a saved model and measure throughput. Built off of the [example here](https://github.com/tensorflow/tensorrt/tree/master/tftrt/benchmarking-python/cpp/image-classification).
44

55
## Docker Environment
66

tftrt/benchmarking-python/object_detection/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ validating accuracy (e.g. mAP).
1010
<a name="setup"></a>
1111
## Setup
1212

13-
Install object detection dependencies (from tftrt/examples/object_detection)
13+
Install object detection dependencies (from tftrt/benchmarking-python/object_detection)
1414

1515
```bash
1616
git submodule update --init

tftrt/examples-cpp/mnist_demo/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cp /opt/tensorflow/nvbuild* /opt/tensorflow/bazel_build.sh .
2424

2525
### Build the TF-TRT example
2626
```
27-
cd tensorrt/tftrt/examples/cpp/image-classification
27+
cd tensorrt/tftrt/examples-cpp/mnist_demo
2828
mkdir build && cd build
2929
cmake ..
3030
make
@@ -38,12 +38,12 @@ python mnist_train.py
3838
### Run TF-TRT conversion and infer the converted model
3939
Get input data
4040
```
41-
cd /workspace/tensorrt/tftrt/examples/cpp/image-classification
41+
cd /workspace/tensorrt/tftrt/examples-cpp/mnist_demo
4242
wget -O - http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz | gunzip > t10k-images.idx3-ubyte
4343
4444
```
4545
Run inference
4646
```
47-
cd /workspace/tensorrt/tftrt/examples/cpp/image-classification/build
47+
cd /workspace/tensorrt/tftrt/examples-cpp/mnist_demo/build
4848
TF_CPP_VMODULE=trt_convert=2,trt_optimization_pass=2,trt_engine_utils=2,trt_engine_op=2,segment=2,trt_shape_optimization_profiles=2,trt_lru_cache=2,convert_graph=2,trt_engine_resource_ops=2 ./tf_trt_example --saved_model_dir=/workspace/tensorflow-source/tf_trt_cpp_example/mnist_model --mnist_data=/workspace/tensorflow-source/tf_trt_cpp_example/t10k-images.idx3-ubyte
4949
```

0 commit comments

Comments
 (0)