Disclaimer[2]:
Continuation of the project has begun (Q3 instead of originally planned Q2), focus given on speed and optimization with core functionallity being added day by day. Main project is set to be finished until December-2018, if everything goes according to plan. Roadmap is to make a reliable exif tool for the Greek language, which will be enhanced.
Disclaimer[1]:
This is a very early stage in the development of greely, key functions don't work, just the shell of the program is running, production will continue in Q2-18. Some adjustments have been to execute alot faster and run on UNIX based operating systems. Minor functionallity will be added in upcomming months but steady updates will continue in half a year.
A new way to interpret and understand natural human language with Greek being the language of focus.
This example is a sentence in natural greek language:
"Καλημέρα, με λένε Ιωάννη και μου αρέσει το ποδόσφαιρο."
if given as input to Greely you will get the following output:
Καλημέρα (ουσιαστικό, ενικού αριθμου , γένος θηλύκο , ονομαστική πτώση) , κόμμα (σημείο στίξης)
με (επεξηγηματικός σύνδεσμος) λένε-[λέ] 'Ιωάννη' (όνομα αρσενικό) και (συμπλεκτικός σύνδεσμος)
μου (ουσιαστικό, ενικού αριθμου , γένος θηλύκο , ονομαστική πτώση) αρέσει-[α]
το (οριστικό άρθρο γένους ουδέτερο ενικού)
ποδόσφαιρο (ουσιαστικό, ενικού αριθμου , γένος ουδέτερο , ονομαστική πτώση) . τελεία (σημείο στίξης)
│
├── bison_flex
| ├── analyzer
| | ├── greek_endings.h // greek word endings
| | ├── greek_word_data.h // greek word database
| | ├── word_exif_data_to_mem.c // funcs for print
| | ├── word_exif_data_to_mem.h // funcs for print
| | ├── word_syllab_arrays.h // arrays for print
| | └── word_type_print.h // helping funcs for print
| |
| ├── bison
| | ├── greek_moria.h // greek word moria
| | ├── greek_protheseis.h // greek word protheseis
| | ├── greek_stikseis.h // greek word stikseis
| | ├── greek_sundesmoi.h // greek word sundesmoi
| | └── parser.y // grammatical analyzer
| |
| └── flex
| ├── greek_names.h // greek word names
| └── scanner.l // lexical analyzer
|
├── EXTRAS
| ├── ANALYZER_OLD
| | ├── greek_endings_genos.txt // greek endings genos
| | ├── name_gr.txt // greek names
| | ├── greek_word_data.txt // greek word database
| | ├── word_exif_data_to_mem.c // funcs for print
| | ├── word_exif_data_to_mem.h
| | ├── word_syllab_arrays.h // arrays for print
| | └── word_type_print.h // helping funcs for print
| |
| ├── DATABASES
| | ├── l0_name.txt // greek database
| | ├── l1_database.txt // greek database
| | ├── t1_relations.txt // greek database
| | ├── word_exif_database.xlsx // greek database
| | └── word_exif_names.xlsx // greek database
| |
| ├── IMAGES
| | └── greely_logo.png // greely logo info
| |
| ├── MARKDOWNS
| | ├── CONTRIBUTING.md // Contribution Markdown
| | └── LICENSE.md // License Markdown
| |
| └── WORD_EXIF_TOOL_CPP
| ├── main.cpp
| ├── Makefile
| ├── word_endings.hpp
| ├── word_exif_data_to_mem.cpp
| └── word_exif_data_to_mem.hpp
|
├── input
| └── input.txt // current input
│
├── output
| └── blank // compiled files
|
├── Makefile // Makefile
└── README.md // README MD
Most Linux distros and Mac OS come preinstalled with all of the following compilers but if you find any trouble, these are the links to follow:
- gcc - https://gcc.gnu.org
- flex - https://www.gnu.org/software/flex/
- bison - https://www.gnu.org/software/bison/
Clone the project to your computer and run make, it's simple as that !
git clone https://github.com/keybraker/Greely.git
enter the project folder via terminal and run command
make
to clean all products created by the program run command
make clean
- [09/2018] - Verb, Noun and Adjective separation
- [10/2018] - Core functionallity
- [11/2018] - Performance improvements
- [12/2018] - Threads / CUDA
- [01/2019] - Learning Algorythm deployment (ALPHA)
- c - The merging of all the parts and for database generation
- flex - The Lexical Analysis
- bison - The Grammatical Analysis
- Ioannis Tsiakkas - Keybraker