Skip to content

Latest commit

 

History

History
52 lines (45 loc) · 3.47 KB

README.md

File metadata and controls

52 lines (45 loc) · 3.47 KB

text comparision

first of all I apologize for my english. (;
Here i create some codes to be published.
for the beginning i write a code to compare two text as missmatch error.
The distinctive feature of this code is that in this code each line is compare separatly and it try to start comparision from begining or end depending on which side is better matched.
in the future i will apply some change to ignore Placement of words in error calculation. for example consider one word is deleted in this case all next words will detect as error while there is just one placement and it should be detected as one error not error for all next words.
if there is a problem cantact me using my email address: [email protected]

run: main.py

application:

suppose there is two text that one is ideal text and the other is extracted text (for example in OCR). so you need to compare them to calculate error rate.

adjustable parameters:

ignor_space:bool =>it determine the space should be important in comparision or not.
less_than_char_ignore:bool => suppose there is some very short chars that are extracted incorrectly using OCR or another application. then you can ignor them using activate this parameter. by default number of ignor char is 1 but if you want to change it you can use next parameter named "ignor_char_num".
ignor_char_num:int =>Set the minimum length of a string to be ignored.

example:

here is some examples:

example 1:

ideal_text:str= "this is a test\nmy email address is: [email protected]\nwww.x_code.com\ntime is come\n"
text:str= "this is a test\nmy email address is: [email protected]\nwww.x_code.com\ntime is come\n"
accuracy,correct_char_N,total_N=accuracy_cal(text,ideal_text,ignor_space=False,less_than_char_ignore=True,ignor_char_num=1) print("accuracy = "+str(accuracy)+"\ntotal length = "+str(total_N)+"\ncorrect char length = "+str(correct_char_N)) the result is :
 {accuracy = 100.0
 total length = 85
 correct char length = 85}

example 2:

here just one space is deleted. the accuracy has been decreased because it is sensitive to space using set "ignor_space=False".
ideal_text:str= "this is a test\nmy email address is: [email protected]\nwww.x_code.com\ntime is come\n"
text:str= "this is a test\nmy email address is: [email protected]\nwww.x_code.com\ntime iscome\n"

accuracy,correct_char_N,total_N=accuracy_cal(text,ideal_text,ignor_space=False,less_than_char_ignore=True,ignor_char_num=1)
print("accuracy = "+str(accuracy)+"\ntotal length = "+str(total_N)+"\ncorrect char length = "+str(correct_char_N))
the result is :
 {accuracy = 89.41176470588236
 total length = 85
 correct char length = 76}

example 3:

now accuracy calculation is not sensitive to space because setting "ignor_space=True"
ideal_text:str= "this is a test\nmy email address is: [email protected]\nwww.x_code.com\ntime is come\n"
text:str= "this is a test\nmy email address is: [email protected]\nwww.x_code.com\ntime iscome\n"

accuracy,correct_char_N,total_N=accuracy_cal(text,ideal_text,ignor_space=True,less_than_char_ignore=True,ignor_char_num=1)
print("accuracy = "+str(accuracy)+"\ntotal length = "+str(total_N)+"\ncorrect char length = "+str(correct_char_N))
the result is:
 {accuracy = 100.0
 total length = 76
 correct char length = 76}