Commands:
		chmod +x run.sh
		./run.sh
		python code.py	



This folder contains the following files:

1. run.sh:			It takes the Hindi corpus named Hi_Blogs.txt as input and generates word_frequency.txt which contains
				frequency of each word in the corpus.


2. code.py:			It takes list_23.txt as input and matches the words in it with segmented words in finalSegmentation.txt
				which was output when undivided++ was run on word_frequency.txt. Matched words are output in
				undivided_morpheme.txt.
				Further, it compares the segmentation in undivided_morpheme.txt with handwritten_morpheme.txt and then
				generates the final results of precision, recall and f_score in output.txt.


3. Hi_Blogs.txt: 		This is the hindi word corpus used in this morphological analysis.


4. word_frequency.txt: 		It contains the frequency of the word followed by the word itself from our hindi word corpus i.e.
				Hi_Blogs.txt.


5. finalSegmentation.txt: 	This was one of the output files when undivided++ was run on word_frequency.txt. It contains the final
				segmentation of each file in the vocabulary.


6. list_23.txt:			This is our test file.


7. undivided_morpheme.txt:	It contains the segmentation of words done by undivided++.


8. handwritten_morpheme.txt:	It contains the manual segmentation of the test file i.e. list_23.txt.


9. output.txt: 			It contains the final output i.e. Precision, Recall and F_score.
