Sign inSign up

yodj/tf_official

By yodj

Updated almost 6 years ago

Tensorflow Models Offiical API based on Tensorflow 2.4.1rc1-gpu

Image
0

1.2K

yodj/tf_official repository overview

Usage

1. docker-compose

Example

version: '2.3'
services:
  lens_tube_train:
    image: "yodj/tf_official:2.2.1"
    runtime: nvidia
    logging:
      driver: 'json-file'
      options:
        max-size: '1G'
    environment:
      - NVIDIA_VISIBLE_DEVICES=0,1,2,3
    volumes:
      - ${configs_path}:${configs_path_in_docker}
      - ${model_dir_path}:${model_dir_in_docker}
      - ${datasets_path}:${dataset_path_in_docker}
    command: python ./vision/image_classification/classifier_trainer.py --mode=train_and_eval --model_type=resnet --dataset=imagenet --model_dir=${model_dir_in_docker} --data_dir=${dataset_path_in_docker} --config_file=${configs_path_in_docker} --params_override='runtime.num_gpus=4'

Release

2.2.1
  • Bug fix : can't convert String to Float
2.2.0
  • 2020.11.17
  • Change the Base Tensorflow Image Version 2.3.0 - > 2.4.0rc1
2.1.0
  • 2020.11.16
  • Vision/Detection : use CheckpointManager for save checkpoint and remove legacy files

Tag summary

Content type

Image

Digest

Size

2.8 GB

Last updated

almost 6 years ago

docker pull yodj/tf_official