Skip to content
Snippets Groups Projects
Commit 78f93a88 authored by Stephan Porada's avatar Stephan Porada :speech_balloon:
Browse files

Move down from 100 to 50 words lr context

parent 716e1c35
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ def corpus_analysis_query(query):
# TODO: Stop here and add a new method for transmission
chunk_size = 100
chunk_start = 0
context = 100
context = 50
progress = 0
client.status = 'running'
while chunk_start <= results.attrs['size']:
......
......@@ -74,24 +74,14 @@ class DisplayOptionsForm(FlaskForm):
('20', '20'),
('30', '30'),
('40', '40'),
('50', '50'),
('60', '60'),
('70', '70'),
('80', '80'),
('90', '90'),
('100', '100')])
('50', '50')])
results_per_page = SelectField('Results per page',
choices=[('', 'Choose your option'),
('10', '10'),
('20', '20'),
('30', '30'),
('40', '40'),
('50', '50'),
('60', '60'),
('70', '70'),
('80', '80'),
('90', '90'),
('100', '100')])
('50', '50')])
class InspectDisplayOptionsForm(FlaskForm):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment