Skip to content

Commit 9de48bc

Browse files
committed
[TF1] Retirement notice for all models
1 parent a6c678e commit 9de48bc

File tree

16 files changed

+60
-3
lines changed

16 files changed

+60
-3
lines changed

TensorFlow/Classification/ConvNets/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Resnet-family Convolutional Neural Networks for Image Classification in Tensorflow
22

3-
In this repository you will find implementation of Resnet and its variations for image
4-
classification
3+
In this repository you will find implementation of Resnet and its variations for image classification.
4+
Convolutional Network models for TensorFlow1 are no longer maintained and will soon become unavailable, please consider PyTorch or TensorFlow2 models as a substitute for your requirements.
55

66
## Table Of Contents
77

@@ -84,6 +84,10 @@ three classification models side-by-side.
8484
## Release notes
8585

8686
### Changelog
87+
88+
April 2021
89+
- Ceased maintenance of ConvNets in TensorFlow1
90+
8791
June 2020
8892
- ConvNets repo restructurization
8993
- Initial release of ResNext and SE-Resnext

TensorFlow/Classification/ConvNets/resnet50v1.5/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# ResNet-50 v1.5 for TensorFlow
22

33
This repository provides a script and recipe to train the ResNet-50 v1.5 model to achieve state-of-the-art accuracy, and is tested and maintained by NVIDIA.
4+
ResNet-50 model for TensorFlow1 is no longer maintained and will soon become unavailable, please consider PyTorch or TensorFlow2 models as a substitute for your requirements.
45

56
## Table Of Contents
67
* [Model overview](#model-overview)
@@ -858,5 +859,8 @@ on NVIDIA T4 with (1x T4 16G) GPU.
858859
* Added support for syntetic dataset with different image size
859860
9. January, 2022
860861
* Added barrier at the end of multiprocess run
862+
10. April, 2023
863+
* Ceased maintenance of ConvNets in TensorFlow1
864+
861865
### Known issues
862866
Performance without XLA enabled is low due to BN + ReLU fusion bug.

TensorFlow/Classification/ConvNets/resnext101-32x4d/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# ResNext101-32x4d for TensorFlow
22

33
This repository provides a script and recipe to train the ResNext101-32x4d model to achieve state-of-the-art accuracy, and is tested and maintained by NVIDIA.
4+
ResNext101-32x4d model for TensorFlow1 is no longer maintained and will soon become unavailable, please consider PyTorch or TensorFlow2 models as a substitute for your requirements.
45

56
## Table Of Contents
67
* [Model overview](#model-overview)
@@ -791,6 +792,8 @@ on NVIDIA T4 with (1x T4 16G) GPU.
791792

792793
### Changelog
793794

795+
April 2023
796+
- Ceased maintenance of ConvNets in TensorFlow1
794797
June 2020
795798
- Initial release
796799
August 2020

TensorFlow/Classification/ConvNets/se-resnext101-32x4d/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# SE-ResNext101-32x4d for TensorFlow
22

33
This repository provides a script and recipe to train the SE-ResNext101-32x4d model to achieve state-of-the-art accuracy, and is tested and maintained by NVIDIA.
4+
SE-ResNext101-32x4d model for TensorFlow1 is no longer maintained and will soon become unavailable, please consider PyTorch or TensorFlow2 models as a substitute for your requirements.
45

56
## Table Of Contents
67
* [Model overview](#model-overview)
@@ -784,6 +785,8 @@ on NVIDIA T4 with (1x T4 16G) GPU.
784785

785786
### Changelog
786787

788+
April 2023
789+
- Ceased maintenance of ConvNets in TensorFlow1
787790
April 2020
788791
- Initial release
789792
August 2020

TensorFlow/Detection/SSD/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# SSD320 v1.2 For TensorFlow
22

33
This repository provides a script and recipe to train SSD320 v1.2 to achieve state of the art accuracy, and is tested and maintained by NVIDIA.
4+
SSD model for TensorFlow1 is no longer maintained and will soon become unavailable, please consider a PyTorch version or EfficientDet TensorFlow2 model as a substitute for your requirements.
45

56
## Table Of Contents
67
* [Model overview](#model-overview)
@@ -614,6 +615,9 @@ To achieve same results, follow the [Quick start guide](#quick-start-guide) outl
614615

615616
### Changelog
616617

618+
April 2023
619+
* Ceased maintenance of this model in TensorFlow1
620+
617621
June 2020
618622
* Updated performance tables to include A100 results
619623

TensorFlow/LanguageModeling/BERT/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# BERT For TensorFlow
22

33
This repository provides a script and recipe to train the BERT model for TensorFlow to achieve state-of-the-art accuracy, and is tested and maintained by NVIDIA.
4+
BERT model for TensorFlow1 is no longer maintained and will soon become unavailable, please consider PyTorch or TensorFlow2 models as a substitute for your requirements.
45

56
## Table Of Contents
67

@@ -1201,6 +1202,10 @@ To achieve these same results, follow the [Quick Start Guide](#quick-start-guide
12011202
## Release notes
12021203

12031204
### Changelog
1205+
1206+
April 2023
1207+
- Ceased maintenance of this model in TensorFlow1
1208+
12041209
June 2020
12051210
- Results obtained using 20.06 and on DGX A100 40GB
12061211

TensorFlow/LanguageModeling/Transformer-XL/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
This repository provides a script and recipe to train the Transformer-XL model
44
to achieve state-of-the-art accuracy and is tested and maintained by NVIDIA.
5+
Transformer-XL model for TensorFlow1 is no longer maintained and will soon become unavailable, please consider other PyTorch or TensorFlow2 models as a substitute for your requirements.
56

67
## Table Of Contents
78

@@ -1050,6 +1051,9 @@ To achieve these same results, follow the steps in the [Quick Start Guide](#quic
10501051

10511052
### Changelog
10521053

1054+
April 2023
1055+
* Ceased maintenance of this model in TensorFlow1
1056+
10531057
June 2020
10541058
* upgrade the TensorFlow container to 20.06
10551059
* update performance tables to include A100 results

TensorFlow/Recommendation/NCF/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
This repository provides a script and recipe to train Neural Collaborative Filtering to achieve state of the art
44
accuracy, and is tested and maintained by NVIDIA.
5+
NCF model for TensorFlow1 is no longer maintained and will soon become unavailable, please consider DLRM and Wide & Deep models in TensorFlow2 as a substitute for your requirements.
56

67
## Table of Contents
78

@@ -519,6 +520,9 @@ FP16
519520
520521
### Changelog
521522
523+
April 2023
524+
- Ceased maintenance of this model in TensorFlow1
525+
522526
June 2020
523527
- Updated performance tables to include A100 results
524528

TensorFlow/Recommendation/VAE-CF/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Variational Autoencoder for Collaborative Filtering for TensorFlow
22

33
This repository provides a script and recipe to train the Variational Autoencoder model for TensorFlow to achieve state-of-the-art accuracy on a Collaborative Filtering task and is tested and maintained by NVIDIA.
4+
VAE-CF model for TensorFlow1 is no longer maintained and will soon become unavailable, please consider other PyTorch or TensorFlow2 models as a substitute for your requirements.
45

56
## Table Of Contents
67

@@ -447,6 +448,9 @@ FP16
447448
448449
### Changelog
449450
451+
April 2023
452+
- Ceased maintenance of this model in TensorFlow1
453+
450454
July 2020
451455
- Updated with Ampere convergence and performance results
452456

TensorFlow/Recommendation/WideAndDeep/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Wide & Deep Recommender Model Training For TensorFlow
22

33
This repository provides a script and recipe to train the Wide and Deep Recommender model to achieve state-of-the-art accuracy and is tested and maintained by NVIDIA.
4+
Wide & Deep model for TensorFlow1 is no longer maintained and will soon become unavailable, please consider PyTorch or TensorFlow2 models as a substitute for your requirements.
45

56
## Table Of Contents
67

@@ -469,6 +470,9 @@ Our results were obtained by running the benchmark scripts from the `scripts` di
469470

470471
### Changelog
471472

473+
April 2023
474+
- Ceased maintenance of this model in TensorFlow1
475+
472476
November 2020
473477
- Updated performance tables to include numbers from 20.10-tf1-py3 NGC container
474478

0 commit comments

Comments
 (0)