-
Notifications
You must be signed in to change notification settings - Fork 4
/
database_to_train.py
36 lines (33 loc) · 1.13 KB
/
database_to_train.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
import sqlite3
import pandas as pd
timeframes=['database','databaseo']
for timeframe in timeframes:
connection=sqlite3.connect('{}.db'.format(timeframe))
c=connection.cursor()
limit = 5000
last_unix = 0
cur_length = limit
counter = 0
test_done = False
while cur_length == limit:
df = pd.read_sql("SELECT * FROM parent_reply WHERE unix > {} AND parent NOT NULL AND score > 0 ORDER BY unix ASC LIMIT {}".format(last_unix,limit),connection)
last_unix = df.tail(1)['unix'].values[0]
cur_length = len(df)
if not test_done:
with open("test.from",'a',encoding='utf8') as f:
for content in df['parent'].values:
f.write(content+'\n')
with open("test.to",'a',encoding='utf8') as f:
for content in df['comment'].values:
f.write(content+'\n')
test_done=True
else:
with open("test.from",'a',encoding='utf8') as f:
for content in df['parent'].values:
f.write(content+'\n')
with open("test.to",'a',encoding='utf8') as f:
for content in df['comment'].values:
f.write(content+'\n')
counter+=1
if counter %20 ==0:
print(counter*limit,'rows completed so far')