Lemmatizer for indonesian language
This experiment is PHP-based, so XAMPP, MAMP, WAMP, or whatever will do. configuration for MySQL:
host: localhost
user: root
pass: <none>
database: lemmatizer
- copy everything to your web server folder, e.g.
xampp/htdocs/lemmatizer/
- import
database/db_lemmatizer.sql
to your MySQL database
..and you're good to go.
- Branched
lemmatizer
to 2 versions: release and debug - Added pretty demo version
- Added
parse.php
andtest.php
for testing purposes
The debug version is basically the previous (0.6) version; echo
functions
are called in several key point of the code.
debug version is now separated in another folder: /debug/
. To use debug,
just open up localhost/<your folder>/debug/
.
This script is used for parsing articles into a "lemmatizable" format and store
it in a table (word
)
This script is for lemmatizer (release version) to test out the parsed datas;
results are stored in result
table.
The database consists of 3 tables: dictionary
, result
, and word
.