forked from YaoXinZhi/BLAH8-LLM-for-Rice-GARE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_original_sent.py
82 lines (60 loc) · 2.56 KB
/
get_original_sent.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# -*- coding:utf-8 -*-
# ! usr/bin/env python3
"""
Created on 17/01/2024 13:25
@Author: yao
"""
import os
def main():
base_path = f'/home/kyzhou/xzyao/RiceAlterome/textual_data/rice_scientific_data_1'
src_file_list = [f'{base_path}/{file}' for file in os.listdir(base_path)]
save_prefix = f'rice-alterome-include-rice'
save_path = f'/home/kyzhou/xzyao/RiceAlterome/textual_data/blah_expr_dir'
sent_save_file = f'{save_path}/{save_prefix}.1k-sent.txt'
event_save_file = f'{save_path}/{save_prefix}.1k-event.txt'
sent_num = 1000
sent_count = 1
saved_sent_set = set()
## 1. Only save the sent identified events.
## 2. Only save the sent that length less than 120.
## 3. Save two file. Pure sent file and event file.
with open(sent_save_file, 'w') as wf_sent, open(event_save_file, 'w') as wf_event:
for src_file in src_file_list:
with open(src_file) as f:
head = f.readline().strip().split('\t')
pmid_idx = head.index('PMID')
sent_idx = head.index('Sentence')
include_idx = head.index('Include Event')
event_idx = head.index('Events')
for line in f:
l = line.strip().split('\t')
pmid = l[pmid_idx]
sent = l[sent_idx]
include_event = l[include_idx]
events = l[event_idx]
# one sent once
if sent in saved_sent_set:
continue
saved_sent_set.add(sent)
# fixme: include events.
if include_event != 'true':
continue
# fixme: length limitation is 120 tokens for sent.
if len(sent) > 200:
continue
# fixme: include Rice in sent
if not 'rice' in sent.lower() and not 'oryza' in sent.lower():
continue
wf_sent.write(f'sent-{sent_count}: {pmid} {sent}\n')
wf_event.write(f'sent-{sent_count}: {pmid} {sent}\n')
wf_event.write(f'{events}\n')
wf_event.write(f'\n')
sent_count += 1
if sent_count >= sent_num+1:
break
if sent_count >= sent_num+1:
break
print(f'{sent_count-1} sentences saved.')
print(f'{sent_save_file} and {event_save_file} saved.')
if __name__ == '__main__':
main()