Add:An example, aispeech_asr, and a dataset, speech_dataset_large, have been added and supporting multi-machine multi-GPU decoding #225
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this PR do?
An example, aispeech_asr, and a large dataset, speech_dataset_large, have been added, and supporting multi-machine multi-GPU decoding.
Feature/Issue validation/testing
Please describe the tests that you ran to verify your changes and relevant result summary. Provide instructions so it can be reproduced.
Please also list any relevant details for your test configuration.
This example is designed for large-scale industrial data training, suitable for datasets on the order of 100,000 hours. Its main features include:
Support for multi-task training: Designed to support tasks such as ASR and ST through a unified data format.
Dynamic prompt selection: Supports random selection from multiple prompts.
Iterative dataset: Uses an iterative dataset format to reduce startup time for large datasets.
Deepspeed training: Supports DeepSpeed training to significantly reduce memory usage.
Multi-machine multi-GPU inference: Supports distributed inference across multiple machines and GPUs to reduce evaluation time.
Dynamic frame batching: Dynamically combines frames based on audio size rather than using a fixed batch size, significantly reducing training and evaluation time (reduces training time by 3/4 for 100,000 hours of data).
Add an dataset for Dynamic frame batching
Support supporting multi-machine multi-GPU decoding.
Before submitting
Thanks for contributing 🎉!