Web Application for Supervised learning community
You have to install these software:
- MySQL or MariaDB
- PHP and php-mysql
- Composer
Use Composer to install depending packages.
composer install
Execute db/db.sql
to setup database structure.
If you want to install table into database called iwtt
by root
user, type below command.
mysql -u root -p iwtt < db.sql
Copy _config.example.php
to _config.php
and write your DB connection information.
In this application, labelling configuration is identified with unique number (1 ≤ n ≤ PHP_INT_MAX).
You have to decide unique number for labelling target before start this step.
You have to replace %identifier%
with your decided unique number.
Create dataset/%identifier%
and dataset/%identifier%/src
.
mkdir -p dataset/%identifier%/src
Put configuration file into dataset/%identifier%/config.php
See wiki for configuration format.
Access /teach.php?tid=%identifier%
to labelling.
Source file will randomly chosen.
Access /teach.php?tid=%identifier%&src=%source id%
.
%source id%
is array index of source file.
Access /teach.php?tid=%identifier%&src=1&next=1
.
Access /inspect/list.php?tid=%identifier%
or access /inspect/listcsv.php?tid=%identifier%
to check with csv format.
Access /inspect/list.php?tid=%identifier%&src=%source id%
.
%source id%
is array index of source file.
You can get csv format data with /inspect/listcsv.php?tid=%identifier%&src=%source id%
.