Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

450

451

452

453

454

455

456

import datetime 

import json 

import logging 

import multiprocessing 

from pathlib import Path 

import time 

 

import flask 

import pandas as pd 

import werkzeug 

 

from application import database 

from application import utils 

from application import workflow 

 

# Initialize logging with logfile in tempdir: 

utils.init_logging(logging.INFO) 

 

# Initialize Flask application: 

web = utils.init_app("topicsexplorer") 

 

 

@web.route("/") 

def index(): 

"""Home page. 

""" 

logging.debug("Calling home page endpoint...") 

if "process" in globals() and process.is_alive(): 

logging.info("Terminating topic modeling process...") 

process.terminate() 

# Initialize SQLite database: 

utils.init_db(web) 

logging.debug("Rendering home page template...") 

return flask.render_template("index.html", 

help=True) 

 

 

@web.route("/help") 

def help(): 

"""Help page. 

""" 

logging.debug("Rendering help page template...") 

return flask.render_template("help.html", 

go_back=True) 

 

 

@web.route("/error") 

def error(): 

"""Error page. 

""" 

with utils.LOGFILE.open("r", encoding="utf-8") as logfile: 

log = logfile.read().split("\n")[-20:] 

return flask.render_template("error.html", 

reset=True, 

log="\n".join(log), 

tempdir=utils.TEMPDIR) 

 

 

@web.route("/modeling", methods=["POST"]) 

def modeling(): 

"""Modeling page. 

""" 

logging.debug("Calling modeling page endpoint...") 

# Must be global to use anywhere: 

global start 

global process 

start = time.time() 

process = multiprocessing.Process(target=workflow.wrapper) 

logging.info("Initializing topic modeling process...") 

process.start() 

logging.info("Started topic modeling process.") 

logging.debug("Rendering modeling page template...") 

return flask.render_template("modeling.html", 

abort=True) 

 

 

@web.route("/overview-topics") 

def overview_topics(): 

"""Topics overview page. 

""" 

logging.debug("Calling topics overview page endpoint...") 

logging.info("Get document-topic distributions...") 

response = get_document_topic_distributions() 

document_topic = pd.read_json(response, orient="index") 

 

logging.info("Get token frequencies...") 

response = get_token_frequencies() 

token_freqs = json.loads(response) 

 

logging.info("Add frequencies to weights...") 

document_topic = document_topic.multiply(token_freqs, axis=0) 

 

logging.info("Sum the weights...") 

dominance = document_topic.sum(axis=0) 

 

logging.info("Scale weights...") 

proportions = utils.scale(dominance) 

proportions = pd.Series(proportions, index=dominance.index) 

proportions = proportions.sort_values(ascending=False) 

 

# Convert pandas.Series to a 2-D array: 

proportions = list(utils.series2array(proportions)) 

 

corpus_size = get_corpus_size() 

number_topics = get_number_of_topics() 

logging.debug("Rendering topics overview template...") 

return flask.render_template("overview-topics.html", 

current="topics", 

help=True, 

reset=True, 

topics=True, 

documents=True, 

document_topic_distributions=True, 

parameters=True, 

export_data=True, 

proportions=proportions, 

corpus_size=corpus_size, 

number_topics=number_topics) 

 

 

# added for graph 

@web.route("/graph", methods=["POST", "GET"]) 

def showGraph(): 

if flask.request.method == "POST": 

cutoff = flask.request.args.get(key='cutoff', type=float) 

print() 

 

# logging.debug("Calling page for graph...") 

# 

# cutoff = flask.request.args.get(key='a', 

# default=666, 

# type=int) 

 

cutoff = None 

corpus_size = get_corpus_size() 

print(cutoff) 

return flask.render_template("graph.html", 

current="graph", 

help=True, 

reset=True, 

topics=True, 

graph=True, 

documents=True, 

document_topic_distributions=True, 

parameters=True, 

export_data=True, 

go_back=True, 

corpus_size=corpus_size 

) 

 

 

@web.route("/api/graph") 

def preprocessGraph(): 

return utils.createJsonGraph(get_document_similarities()) 

# end graph 

 

 

@web.route("/overview-documents") 

def overview_documents(): 

"""Documents overview page. 

""" 

logging.debug("Calling documents overview page endpoint...") 

sizes = pd.DataFrame(get_textfile_sizes(), columns=["title", "size"]) 

 

proportions = utils.scale(sizes["size"]) 

proportions = pd.Series(proportions, index=sizes["title"]) 

proportions = proportions.sort_values(ascending=False) 

 

# Convert pandas.Series to a 2-D array: 

proportions = list(utils.series2array(proportions)) 

 

corpus_size = get_corpus_size() 

return flask.render_template("overview-documents.html", 

current="documents", 

help=True, 

reset=True, 

topics=True, 

documents=True, 

document_topic_distributions=True, 

graph=True, 

parameters=True, 

export_data=True, 

go_back=True, 

proportions=proportions, 

corpus_size=corpus_size) 

 

 

@web.route("/document-topic-distributions") 

def document_topic_distributions(): 

"""Document-topic distributions page. 

""" 

logging.debug("Calling document-topic distributions endpoint...") 

logging.debug("Rendering document-topic distributions page template...") 

return flask.render_template("document-topic-distributions.html", 

current="document-topic-distributions", 

help=True, 

reset=True, 

topics=True, 

documents=True, 

document_topic_distributions=True, 

graph=True, 

parameters=True, 

export_data=True, 

go_back=True) 

 

 

@web.route("/topics/<topic>") 

def topics(topic): 

"""Topic page. 

""" 

logging.debug("Calling topic page endpoint...") 

logging.info("Get topics...") 

topics = json.loads(get_topics()) 

logging.info("Get document-topic distributions...") 

document_topic = pd.read_json( 

get_document_topic_distributions(), orient="index") 

logging.info("Get topic similarity matrix...") 

topic_similarites = pd.read_json(get_topic_similarities()) 

 

logging.info("Get related documents...") 

related_docs = document_topic[topic].sort_values(ascending=False)[:10] 

related_docs_proportions = utils.scale(related_docs, minimum=70) 

related_docs_proportions = pd.Series( 

related_docs_proportions, index=related_docs.index) 

related_docs_proportions = related_docs_proportions.sort_values( 

ascending=False) 

 

# Convert pandas.Series to a 2-D array: 

related_docs_proportions = list( 

utils.series2array(related_docs_proportions)) 

 

logging.info("Get related words...") 

related_words = topics[topic][:15] 

 

logging.info("Get similar topics...") 

similar_topics = topic_similarites[topic].sort_values(ascending=False)[1:4] 

logging.debug("Rendering topic page template...") 

return flask.render_template("detail-topic.html", 

help=True, 

reset=True, 

topics=True, 

documents=True, 

document_topic_distributions=True, 

parameters=True, 

export_data=True, 

go_back=True, 

topic=topic, 

similar_topics=similar_topics.index, 

related_words=related_words, 

related_documents=related_docs_proportions) 

 

 

@web.route("/documents/<title>") 

def documents(title): 

"""Document page. 

""" 

logging.debug("Calling document page endpoint...") 

logging.info("Get textfiles...") 

text = get_textfile(title) 

logging.info("Get document-topics distributions...") 

document_topic = pd.read_json( 

get_document_topic_distributions(), orient="index") 

logging.info("Get document similarity matrix...") 

document_similarites = pd.read_json(get_document_similarities()) 

 

logging.info("Get related topics...") 

related_topics = document_topic.loc[title].sort_values( 

ascending=False) * 100 

distribution = list(related_topics.to_dict().items()) 

 

logging.info("Get similar documents...") 

similar_docs = document_similarites[title].sort_values(ascending=False)[ 

1:4] 

 

logging.debug( 

"Use only the first 10000 characters (or less) from document...") 

text = text if len( 

text) < 10000 else "{}... This was an excerpt of the original text.".format(text[:10000]) 

 

logging.debug("Split paragraphs...") 

text = text.split("\n\n") 

 

n = get_number_of_topics() 

top_topics = ["{} most relevant".format(n) if int(n) >= 10 else n, 

"Top {}".format(n)] 

logging.debug("Rendering document page template...") 

return flask.render_template("detail-document.html", 

help=True, 

reset=True, 

topics=True, 

documents=True, 

document_topic_distributions=True, 

parameters=True, 

export_data=True, 

go_back=True, 

title=title, 

text=text, 

distribution=distribution, 

similar_documents=similar_docs.index, 

related_topics=related_topics.index, 

top_topics=top_topics) 

 

 

@web.route("/parameters") 

def parameters(): 

"""Paramter page. 

""" 

logging.debug("Calling parameters page endpoint...") 

logging.info("Get parameters...") 

data = json.loads(get_parameters())[0] 

info = json.loads(data) 

logging.debug("Rendering parameters page template...") 

return flask.render_template("overview-parameters.html", 

current="parameters", 

parameters=True, 

help=True, 

reset=True, 

topics=True, 

documents=True, 

document_topic_distributions=True, 

export_data=True, 

go_back=True, 

**info) 

 

 

# API endpoints: 

 

@web.route("/api/status") 

def get_status(): 

"""Current modeling status. 

""" 

seconds = int(time.time() - start) 

elapsed_time = datetime.timedelta(seconds=seconds) 

with utils.LOGFILE.open("r", encoding="utf-8") as logfile: 

messages = logfile.readlines() 

message = messages[-1].strip() 

message = utils.format_logging(message) 

return "Elapsed time: {}<br>{}".format(elapsed_time, message) 

 

 

@web.route("/api/document-topic-distributions") 

def get_document_topic_distributions(): 

"""Document-topics distributions. 

""" 

return database.select("document_topic_distributions") 

 

 

@web.route("/api/topics") 

def get_topics(): 

"""Topics. 

""" 

return database.select("topics") 

 

 

@web.route("/api/document-similarities") 

def get_document_similarities(): 

"""Document similarity matrix. 

""" 

return database.select("document_similarities") 

 

 

@web.route("/api/topic-similarities") 

def get_topic_similarities(): 

"""Topic similarity matrix. 

""" 

return database.select("topic_similarities") 

 

 

@web.route("/api/textfiles/<title>") 

def get_textfile(title): 

"""Textfiles. 

""" 

return database.select("textfile", title=title) 

 

 

@web.route("/api/stopwords") 

def get_stopwords(): 

"""Stopwords. 

""" 

return database.select("stopwords") 

 

 

@web.route("/api/token-frequencies") 

def get_token_frequencies(): 

"""Token frequencies per document. 

""" 

return database.select("token_freqs") 

 

 

@web.route("/api/parameters") 

def get_parameters(): 

"""Model parameters. 

""" 

return json.dumps(database.select("parameters")) 

 

 

@web.route("/api/textfile-sizes") 

def get_textfile_sizes(): 

"""Textfile sizes. 

""" 

return database.select("textfile_sizes") 

 

 

@web.route("/api/corpus-size") 

def get_corpus_size(): 

"""Corpus size. 

""" 

return str(len(get_textfile_sizes())) 

 

 

@web.route("/api/number-topics") 

def get_number_of_topics(): 

"""Number of topics. 

""" 

return str(len(json.loads(get_topics()))) 

 

 

@web.route("/export/<filename>") 

def export(filename): 

"""Data archive. 

""" 

if "topicsexplorer-data.zip" in {filename}: 

utils.export_data() 

path = Path(utils.TEMPDIR, filename) 

return flask.send_file(filename_or_fp=str(path)) 

 

 

@web.errorhandler(werkzeug.exceptions.HTTPException) 

def handle_http_exception(e): 

"""Handle errors.. 

""" 

return error() 

 

 

for code in werkzeug.exceptions.default_exceptions: 

web.errorhandler(code)(handle_http_exception) 

 

 

@web.after_request 

def add_header(r): 

"""Clear cache after request. 

""" 

r.headers["Cache-Control"] = "no-cache, no-store, must-revalidate" 

r.headers["Pragma"] = "no-cache" 

r.headers["Expires"] = "0" 

r.headers["Cache-Control"] = "public, max-age=0" 

return r 

 

 

@web.teardown_appcontext 

def close_connection(exception): 

"""Close connection to SQLite database. 

""" 

db = getattr(flask.g, "_database", None) 

if db is not None: 

db.close()