-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/feedback #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Feature/feedback #78
Conversation
oktaal
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some random nitpicking but Let's deploy to production
| main_question_id = line[4] | ||
| main_question = line[7] | ||
| sub_question = line[5] | ||
| sub_question = line[5] if line[5] not in ['', ' ', ' '] else 'clausal' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe replace with:
sub_question = 'clausal' if not line[5] or line[5].isspace() else line[5]There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(or if you know for sure it is not None then only not line[5].isspace())
| placeholder: $localize`Select Sub-Question(s)` | ||
| }, { | ||
| name: $localize`Sub-Question Text`, | ||
| // name: $localize`Sub-Question`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can just remove the uncommented code
| of languages/language varieties that proved interesting for our research purposes. Next, we made | ||
| questionnaires | ||
| to | ||
| The database contains 33,384 translations of 252 prompts (including unattested patterns), from 326 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The translations have to be updated and could these counts come from https://github.com/CentreForDigitalHumanities/mima/blob/feature/feedback/frontend/build/count-tokens.js? (or at least make that into a separate issue)
Voila, feedback van Norbert, Marta, en Lex verwerkt. Geen wereldverschuivende aanpassingen volgens mij.