dataset_via
About
Load VGG Image Annotator dataset
Load VGG Image Annotator (VIA) dataset. This plugin converts a given dataset in VIA format to Ikomia format. Then, any training algorithms from the Ikomia marketplace can be connected to this converter.
🚀 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
[Change the sample image URL to fit algorithm purpose]
from ikomia.dataprocess.workflow import Workflowfrom ikomia.utils import ik# Initialize the workflowwf = Workflow()# Add the dataset loader to load your custom data and annotationsdataset = wf.add_task(name="dataset_via")# Set parametersdataset.set_parameters({"via_json_file":"Path/to/via_json_file.json"})# Add the YoloV8 training algorithmyolo = wf.add_task(name="train_yolo_v8")# Launch your training on your datawf.run()
☀️ 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.
📝 Set algorithm parameters
- via_json_via (str): Annotation file (.json).
from ikomia.dataprocess.workflow import Workflowfrom ikomia.utils import ik# Initialize the workflowwf = Workflow()# Add the dataset loader to load your custom data and annotationsdataset = wf.add_task(name="dataset_via")# Set parametersdataset.set_parameters({"via_json_file":"Path/to/via_json_file.json"})
Developer
Ikomia
License
MIT License
A short and simple permissive license with conditions only requiring preservation of copyright and license notices. 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 | Liability |
Modification | Warranty | |
Distribution | ||
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.