tao-train-ocrnet

par nvidia

OCRNet pour la reconnaissance de texte de scène. Reconnaît le contenu textuel à partir d'images de régions de texte recadrées et prend en charge les décodeurs CTC et basés sur l'attention. À utiliser lors de l'entraînement,…

npx skills add https://github.com/nvidia/skills --skill tao-train-ocrnet

OCRNet

Standalone install? If this session was not initialized by the TAO skill bank plugin, run the tao-setup skill first (host preflight, credentials, cross-skill discovery).

OCRNet for scene text recognition. Recognizes text content from cropped text region images. Supports CTC and attention-based decoders.

Set train.pretrained_model_path for pretrained OCR weights.

For TAO Deploy TensorRT actions (gen_trt_engine, TensorRT evaluate, and TensorRT inference), read references/tao-deploy-ocrnet.md first. Deploy spec templates live in this skill's references/ folder with the spec_template_deploy_*.yaml prefix.

Dataclass Schemas

Generated TAO Core schemas are packaged in schemas/<action>.schema.json, with schemas/manifest.json listing available actions. Each generated schema also emits references/spec_template_<action>.yaml from the schema top-level default field. AutoML enablement is declared at the model layer in references/skill_info.yaml via automl_enabled. Runnable AutoML for an action requires schemas/<action>.schema.json and references/spec_template_<action>.yaml to exist and parse. Use the packaged selected-action schema for automl_default_parameters, automl_disabled_parameters, defaults, min/max bounds, enums, option weights, math conditions, dependencies, and popular parameters. Do not expect ~/tao-core at runtime; maintainers regenerate schemas/templates before packaging the skill bank.

Train Action Policy

This model is AutoML-enabled at the model layer. Before handling any train-stage request, read references/skill_info.yaml and resolve the run override from either an explicit automl_policy value or the user's workflow request. Use automl_policy: on by default and only expose on / off in new launch prompts. Treat phrases like "turn off AutoML", "disable AutoML", "no HPO", or "plain training" as automl_policy: off for this run only. When automl_policy: on, automl_enabled: true, and both schemas/train.schema.json and references/spec_template_train.yaml are packaged, route the train action through tao-skill-bank:tao-run-automl by default with this model's skill_dir. Preserve workflow/application overrides for datasets, specs, output directories, GPU/platform settings, parent checkpoints, and automl_policy. Use direct model training only when automl_policy: off or the packaged train schema/template is missing; in the missing-schema case, report that AutoML is enabled but not runnable for this model until schemas are generated.

Non-train actions such as evaluate, inference, export, and deploy flows stay in this model skill. The per-run automl_policy override does not change model metadata.

Training Requirements

  • Dataset type: ocrnet
  • Formats: default
  • Monitoring metric: val_acc_1

Per-Action Dataset Requirements

ActionSpec KeySourceFilesList?
dataset_convertdataset_convert.input_img_dirtrain_datasets or eval_datasetextracted folder containing cropped text imagesNo
dataset_convertdataset_convert.gt_filetrain_datasets or eval_datasettrain/gt_new.txt or test/gt_new.txtNo
evaluatedataset.character_list_fileeval_datasetcharacter_listNo
evaluateevaluate.test_dataset_direval_datasetextracted test image folderNo
evaluateevaluate.test_dataset_gt_fileeval_datasettest/gt_new.txtNo
evaluateevaluate.checkpointparent train/AutoML jobbest_accuracy.pth or exact requested epoch checkpointNo
exportdataset.character_list_fileeval_datasetcharacter_listNo
exportexport.checkpointparent train/AutoML jobbest_accuracy.pth or exact requested epoch checkpointNo
deploy/gen_trt_enginegen_trt_engine.tensorrt.calibration.cal_image_dircalibration_datasetextracted calibration image folder for INT8 calibrationYes
deploy/gen_trt_enginegen_trt_engine.onnx_fileparent export jobexported .onnx artifactNo
deploy/gen_trt_enginedataset.character_list_fileeval_datasetcharacter_listNo
inferencedataset.character_list_fileeval_datasetcharacter_listNo
inferenceinference.inference_dataset_dirinference_datasetextracted inference image folderNo
inferenceinference.checkpointparent train/AutoML jobbest_accuracy.pth or exact requested epoch checkpointNo
prunedataset.character_list_fileeval_datasetcharacter_listNo
pruneprune.checkpointparent train/AutoML jobbest_accuracy.pth or exact requested epoch checkpointNo
quantizedataset.train_dataset_dirdataset_convert train jobLMDB folder containing data.mdb and lock.mdbYes
quantizedataset.val_dataset_dirdataset_convert eval jobLMDB folder containing data.mdb and lock.mdbNo
quantizedataset.character_list_fileeval_datasetcharacter_listNo
quantizedataset.quant_calibration_dataset.images_dirtrain_datasetsextracted calibration image folderNo
quantizequantize.model_pathparent train/AutoML jobcheckpoint selected by resolverNo
retraindataset.train_dataset_dirdataset_convert train jobLMDB folder containing data.mdb and lock.mdbYes
retraindataset.val_dataset_dirdataset_convert eval jobLMDB folder containing data.mdb and lock.mdbNo
retraindataset.character_list_fileeval_datasetcharacter_listNo
retrainmodel.pruned_graph_pathparent prune jobpruned .pth artifactNo
traindataset.train_dataset_dirdataset_convert train jobLMDB folder containing data.mdb and lock.mdbYes
traindataset.train_gt_filetrain_datasetstrain/gt_new.txt when using raw folders instead of LMDBNo
traindataset.val_dataset_dirdataset_convert eval jobLMDB folder containing data.mdb and lock.mdbNo
traindataset.val_gt_fileeval_datasettest/gt_new.txt when using raw folders instead of LMDBNo
traindataset.character_list_fileeval_datasetcharacter_listNo

Checkpoint Selection

OCRNet training writes both best_accuracy.pth and epoch-step checkpoints such as model_epoch_000_step_00003.pth. Use the SDK/model checkpoint resolver through the spec_params mappings in references/skill_info.yaml; do not guess by sorting for the newest .pth.

  • Use best_accuracy.pth for best-checkpoint evaluate, inference, export, and prune requests.
  • Use the exact requested model_epoch_*_step_*.pth for epoch/step-specific actions.
  • Use train.resume_training_checkpoint_path only for resume training, and use model.pruned_graph_path for retrain from a prune output. OCRNet does not expose a separate ocrnet retrain CLI subtask in the PyT image; the model-skill retrain action routes through ocrnet train -e with the pruned graph path set.
  • OCRNet quantize loads the model through PyTorch. For trusted checkpoints created by the same local run, set TORCH_FORCE_NO_WEIGHTS_ONLY_LOAD=1 if PyTorch 2.6+ rejects the checkpoint as a weights-only load.

Typical Spec Overrides

Data source overrides are mandatory for every action. Run dataset_convert separately for train and validation splits, then pass the LMDB folders that directly contain data.mdb and lock.mdb into train, quantize, and retrain. Tarballs from remote storage must be extracted before they are used as image directories.

TRAIN_IMAGES = "<extracted train image folder>"
TRAIN_GT = "<train gt_new.txt>"
EVAL_IMAGES = "<extracted eval image folder>"
EVAL_GT = "<eval gt_new.txt>"
TRAIN_LMDB = "<train dataset_convert results_dir>"
EVAL_LMDB = "<eval dataset_convert results_dir>"
CHAR_LIST = "<character_list>"

dataset_convert (run once per split):

{
    "dataset_convert.input_img_dir": TRAIN_IMAGES,
    "dataset_convert.gt_file": TRAIN_GT,
}

train (mandatory data sources):

{
    "train.num_epochs": 30,
    "train.checkpoint_interval": 10,
    "train.validation_interval": 10,
    "train.num_gpus": 1,
    "dataset.batch_size": 16,
    "dataset.train_dataset_dir": [TRAIN_LMDB],
    "dataset.val_dataset_dir": EVAL_LMDB,
    "dataset.train_gt_file": "",
    "dataset.val_gt_file": "",
    "dataset.character_list_file": CHAR_LIST,
}

deploy/gen_trt_engine (mandatory data sources):

{
    "gen_trt_engine.onnx_file": "<selected export ONNX>",
    "gen_trt_engine.trt_engine": "<output engine path>",
    "gen_trt_engine.tensorrt.calibration.cal_cache_file": "<output calibration cache path>",
    "gen_trt_engine.tensorrt.data_type": "fp16",
    "gen_trt_engine.tensorrt.calibration.cal_image_dir": [TRAIN_IMAGES],
    "dataset.character_list_file": CHAR_LIST,
}

evaluate (mandatory data sources):

{
    "evaluate.checkpoint": "<selected train/AutoML checkpoint>",
    "dataset.character_list_file": CHAR_LIST,
    "evaluate.test_dataset_dir": EVAL_IMAGES,
    "evaluate.test_dataset_gt_file": EVAL_GT,
}

export (mandatory data sources):

{
    "export.checkpoint": "<selected train/AutoML checkpoint>",
    "export.onnx_file": "<output ONNX path>",
    "dataset.character_list_file": CHAR_LIST,
}

inference (mandatory data sources):

{
    "inference.checkpoint": "<selected train/AutoML checkpoint>",
    "dataset.character_list_file": CHAR_LIST,
    "inference.inference_dataset_dir": EVAL_IMAGES,
}

prune (mandatory data sources):

{
    "prune.checkpoint": "<selected train/AutoML checkpoint>",
    "prune.pruned_file": "<output pruned PTH path>",
    "dataset.character_list_file": CHAR_LIST,
}

quantize (mandatory data sources):

{
    "dataset.train_dataset_dir": [TRAIN_LMDB],
    "dataset.val_dataset_dir": EVAL_LMDB,
    "dataset.character_list_file": CHAR_LIST,
    "dataset.quant_calibration_dataset.images_dir": TRAIN_IMAGES,
    "quantize.model_path": "<selected train/AutoML checkpoint>",
}

retrain (mandatory data sources):

{
    "dataset.train_dataset_dir": [TRAIN_LMDB],
    "dataset.val_dataset_dir": EVAL_LMDB,
    "dataset.character_list_file": CHAR_LIST,
    "model.pruned_graph_path": "<selected prune output>",
}

Eval Dataset

Optional. Test data provided as separate tarball.

Important Parameters

  • dataset.character_list_file: Path to character list defining the supported character set. This determines the output vocabulary size.
  • model.backbone: Default ResNet.
  • model.prediction: Decoder type. CTC or Attn (attention-based).
  • train.optim.lr: Learning rate. Default 1.0 (Adadelta optimizer). High default is specific to Adadelta.
  • dataset.batch_size: Per-GPU batch size. Default 16.

Multi-GPU / Multi-Node

Launch method: Lightning-managed (single python process, Lightning spawns workers).

Spec KeyDescriptionDefault
train.num_gpusNumber of GPUs1
train.gpu_idsGPU device indices[0]
train.distributed_strategyStrategy nameauto
  • Strategy: auto for single-GPU, reads train.distributed_strategy from config when multi-GPU
  • No explicit num_nodes in train script — single-node oriented
  • Lightweight model, single GPU typically sufficient

Hardware

Minimum 1 GPU(s), recommended 1 GPU(s). 8GB+ VRAM per GPU. OCR text recognition is lightweight. Single GPU is typically sufficient.

Error Patterns

dataset_convert required: If using raw images + gt files, run dataset_convert first to produce LMDB format.

dataset_convert output folder: Direct ocrnet dataset_convert writes data.mdb and lock.mdb directly under dataset_convert.results_dir. Use that folder itself for dataset.train_dataset_dir, dataset.val_dataset_dir, quantize, and retrain inputs. SDK-backed runs may wrap the same LMDB folder inside job artifact directories; resolve the actual folder containing data.mdb and lock.mdb.

GT file BOM: Some text-recognition GT files can start with a UTF-8 BOM on the first filename. If dataset conversion logs a missing path with an invisible prefix before the first image name, strip the BOM from a local copy of the GT file before conversion or evaluation.

Character list mismatch: All characters in training data must be present in the character_list file.

Export/prune output fields required: export.onnx_file and prune.pruned_file must be writable output paths. These are declared in references/skill_info.yaml so SDK-backed model runs can create the paths automatically.

TensorRT lives in deploy: The PyT OCRNet CLI exposes dataset_convert, evaluate, export, inference, prune, quantize, and train, but not gen_trt_engine. Use references/tao-deploy-ocrnet.md and deploy/skill_info.yaml for TensorRT engine generation and TensorRT-backed evaluate/inference.

Spec Param / Parent Model Inference

Model-specific inference mappings belong in this MD file, not in config.json. Generated runners should read this section and apply the mappings with SDK helpers before create_job(). This mirrors the old microservices infer_params.py flow.

Inference mappings from TAO Core ocrnet.config.json:

ActionSpec FieldInference FunctionMeaning
dataset_convertresults_diroutput_dircurrent job results directory
evaluateencryption_keykeyencryption key
evaluateevaluate.checkpointparent_modelmodel file inferred from the parent job results folder
evaluateevaluate.trt_engineparent_modelmodel file inferred from the parent job results folder
evaluatemodel.pruned_graph_pathpruned_modelparent pruned model
evaluateresults_diroutput_dircurrent job results directory
exportencryption_keykeyencryption key
exportexport.checkpointparent_modelmodel file inferred from the parent job results folder
exportexport.onnx_filecreate_onnx_fileoutput ONNX path
exportresults_diroutput_dircurrent job results directory
deploy/gen_trt_engineencryption_keykeyencryption key
deploy/gen_trt_enginegen_trt_engine.onnx_fileparent_modelONNX file inferred from the parent export job results folder
deploy/gen_trt_enginegen_trt_engine.tensorrt.calibration.cal_cache_filecreate_cal_cachecalibration cache path
deploy/gen_trt_enginegen_trt_engine.trt_enginecreate_engine_fileoutput TensorRT engine path
deploy/gen_trt_engineresults_diroutput_dircurrent job results directory
inferenceencryption_keykeyencryption key
inferenceinference.checkpointparent_modelmodel file inferred from the parent job results folder
inferenceinference.trt_engineparent_modelmodel file inferred from the parent job results folder
inferencemodel.pruned_graph_pathpruned_modelparent pruned model
inferenceresults_diroutput_dircurrent job results directory
pruneencryption_keykeyencryption key
pruneprune.checkpointparent_modelmodel file inferred from the parent job results folder
pruneprune.pruned_filecreate_pth_fileoutput PTH path
pruneresults_diroutput_dircurrent job results directory
quantizeencryption_keykeyencryption key
quantizequantize.model_pathparent_modelmodel file inferred from the parent job results folder
quantizeresults_diroutput_dircurrent job results directory
retrainencryption_keykeyencryption key
retrainmodel.pruned_graph_pathparent_modelmodel file inferred from the parent job results folder
retrainresults_diroutput_dircurrent job results directory
trainencryption_keykeyencryption key
trainresults_diroutput_dircurrent job results directory
traintrain.pretrained_model_pathptm_if_no_resume_modelPTM when no resume checkpoint exists
traintrain.resume_training_checkpoint_pathresume_modelmodel file inferred from the current job results folder

For parent_model or parent_model_folder, pass the upstream train/export/AutoML child job id as parent_job_id. The SDK lists the parent result folder, filters checkpoint artifacts, and returns the selected model file or folder. Do not add these mappings back to config.json and do not patch generated runner scripts to guess checkpoint paths.

Deployment

Plus de skills de nvidia

compileiq-debug
nvidia
Utilisez quand quelque chose ne va pas : Search() bloque, toutes les évaluations retournent INVALID_SCORE, les scores ne s'améliorent pas, chaque configuration retourne le même nombre, erreurs ptxas…
create-github-pr
nvidia
Créer des pull requests GitHub en utilisant l'interface en ligne de commande gh. Utiliser lorsque l'utilisateur souhaite créer une nouvelle PR, soumettre du code pour révision, ou ouvrir une pull request. Mots-clés de déclenchement -…
nemoclaw-maintainer-cross-issue-sweep
nvidia
Analyse les autres problèmes ouverts pour trouver ceux qu’une PR donnée pourrait également corriger ou casser accidentellement. Génère des opportunités de correctifs adjacents et des risques de contradiction avec fichier:ligne…
fhir-basics
nvidia
Apprend aux agents comment fonctionnent les API FHIR R4, quelles ressources sont disponibles, comment les interroger avec des paramètres de recherche, et comment analyser correctement tous les formats de réponse…
compileiq-validate-result
nvidia
Utiliser APRÈS qu'une recherche soit terminée et AVANT de réclamer un accélérateur ou d'expédier un ACF. Charge le CSV dump_results, extrait les K meilleurs candidats (mono-objectif)…
changelog-audit
nvidia
Auditer le CHANGELOG.md de Warp avant une publication : récupérer les entrées perdues, trier par impact utilisateur, affiner le langage des entrées, ajuster les retours à la ligne et (en mode branche de publication) mettre à jour la comparaison…
maintain-dynamic-plugins
nvidia
Maintenir les chargeurs de plugins dynamiques NeMo Relay, les manifestes, les SDK natifs Rust, le protocole worker gRPC, le SDK worker Python, la documentation, les tests et la couverture du workflow de publication
dgx-diagnose
nvidia
Diagnostiquer les problèmes courants du DGX Station GB300 — plantages CUDA, ciblage incorrect du GPU, bugs de conteneur vLLM/SGLang, problèmes d'état MIG, erreurs NVLink/Fabric Manager,…