corpus_clean_freq.py 
	
	Used to prune the corpus and get a frequency map of the corpus
	Usage-> python corpus_clean_freq.py <corpus_file_name> <output_file_name>

word_found.py 
	
	Used to found the words given in the list in the segmented file say 'finalSegmentation.txt', we obtain after running Undivide++ on the frequency map file obtained above
	Usage-> python word_found.py <given_list_to_check_file_name> <finalSegmentation.txt> <output_file_name>

remove.py 

	Remove blank lines from a file.The file we get as a output of word_found.py file has blank lines.So to remove these blank lines I used this script
	usage-> python remove.py <input_file_name> <output_file_name>

match.py 

	 Matches the hand annotated file with obtained segmented file(from program) and tells the accuracy
	usage-> python match.py <file1> <file2>
