Created
June 5, 2020 21:32
-
-
Save aniruddha27/5d881ce076a510f34662bdb7cd5ef9fa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create a df containing sentence and its output for rule 1 | |
row_list = [] | |
for i in range(len(df3)): | |
sent = df3.loc[i,'Sent'] | |
year = df3.loc[i,'Year'] | |
output = rule1(sent) | |
dict1 = {'Year':year,'Sent':sent,'Output':output} | |
row_list.append(dict1) | |
df_rule1 = pd.DataFrame(row_list) | |
# rule 1 achieves 20% result on simple sentences | |
output_per(df_rule1,'Output') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment