train_mmlab_text_recognition
About
Training process for MMOCR from MMLAB in text recognition
Training process for MMOCR from MMLAB in text recognition.You can choose a predefined model configuration from MMLAB's model zoo or use custom models and custom pretrained model_weight_file by ticking Expert mode button.
🚀 Use with Ikomia API
1. Install Ikomia API
We strongly recommend using a virtual environment. If you're not sure where to start, we offer a tutorial here.
pip install ikomia
2. Create your workflow
To try this code snippet, you can download and extract from wildreceipt. Then make sure you fill the parameter dataset_folder correctly.
from ikomia.dataprocess.workflow import Workflow# Init your workflowwf = Workflow()# Add datasetdataset = wf.add_task(name="dataset_wildreceipt", auto_connect=False)# Set dataset parametersdataset.set_parameters({'dataset_folder': 'dataset/folder'})# Add algorithmalgo = wf.add_task(name="train_mmlab_text_recognition", auto_connect=True)# Run trainingwf.run()
📝 Set algorithm parameters
- dataset_folder (str, default=""): path to the dataset folder.
Note: parameter key and value should be in string format when added to the dictionary.
☀️ Use with Ikomia Studio
Ikomia Studio offers a friendly UI with the same features as the API.
-
If you haven't started using Ikomia Studio yet, download and install it from this page.
-
For additional guidance on getting started with Ikomia Studio, check out this blog post.
🔍 Explore algorithm outputs
Every algorithm produces specific outputs, yet they can be explored them the same way using the Ikomia API. For a more in-depth understanding of managing algorithm outputs, please refer to the documentation.
from ikomia.dataprocess.workflow import Workflow# Init your workflowwf = Workflow()# Add algorithmdataset = wf.add_task(name="train_mmlab_text_recognition", auto_connect=False)# Set dataset parametersdataset.set_parameters({'dataset_folder': 'dataset/folder'})# Load datasetwf.run()# Look at the loaded dataprint(dataset.get_output(0).data)
Developer
Ikomia
License
Apache License 2.0
A permissive license whose main conditions require preservation of copyright and license notices. Contributors provide an express grant of patent rights. Licensed works, modifications, and larger works may be distributed under different terms and without source code.
Permissions | Conditions | Limitations |
---|---|---|
Commercial use | License and copyright notice | Trademark use |
Modification | State changes | Liability |
Distribution | Warranty | |
Patent use | ||
Private use |
This is not legal advice: this description is for informational purposes only and does not constitute the license itself. Provided by choosealicense.com.