tag-my-dataset tag-my-dataset
Program to tagging a dataset
Status: Beta
Brought to you by:
trucomanx
A graphic user interface program to work with labels and images in a dataset.
If the tag-my-dataset.json
configuration file does not exist in the HOME
directory,
the program will generate it.
On operating systems based in gnu-linux,
the HOME
directory is located at /home/username
.
When the program generates the tag-my-dataset.json
file, writes:
{
"buttons":
[
{
"button_label":"Positive",
"button_image":"",
"button_image_width":0
},
{
"button_label":"Neutral"
},
{
"button_label":"Negative"
}
]
}
The labels button_image
and button_image_width
are optional.
The quantity of buttons ever should be greater than 1.
The next text is an example of configuration file to tag using two types of labels {Happy,Sad}
.
{
"buttons":
[
{
"button_label":"Happy",
"button_image":"/home/username/images/logo-happy.png",
"button_image_width":64
},
{
"button_label":"Sad"
"button_image":"/home/username/images/logo-sad.png",
"button_image_width":64
}
]
}
button_image
is the path of icon image of button with label button_label
.button_image_width
is the width at which the button icon will be displayed.