mirror of
https://github.com/PaddlePaddle/PaddleOCR.git
synced 2025-07-21 07:51:33 +00:00
11 lines
210 B
Python
11 lines
210 B
Python
![]() |
from engine.synthesisers import DatasetSynthesiser
|
||
|
|
||
|
|
||
|
def synth_dataset():
|
||
|
dataset_synthesiser = DatasetSynthesiser()
|
||
|
dataset_synthesiser.synth_dataset()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
synth_dataset()
|