NVIDIA / DeepLearningExamples

State-of-the-Art Deep Learning scripts organized by models - easy to train and deploy with reproducible accuracy and performance on enterprise-grade infrastructure.
13.63k stars 3.24k forks source link

Fix Tensorflow BURT Build #1430

Open MStolen opened 1 month ago

MStolen commented 1 month ago

Problem

Building the docker file in TensorFlow/LanguageModeling/BERT fails. This causes issues in one of the LaunchPad Labs.

Solution

Update the TensorFlow image tag from 20.06-tf1-py3 to 21.07-tf1-py3 to resolve the problem

Alternate Solution

Change line 13 of the Dockerfile to RUN git clone --branch 0.4.0 https://github.com/titipata/pubmed_parser

This solution is unideal since it uses an older release of the parser (current version is 0.5)

Updates

Happy to make updates if needed

--Max