grchristensen / avpd

Apache License 2.0
0 stars 4 forks source link

TODO: (Backend) Profile and Feature Extractor Refactor #11

Open grchristensen opened 3 years ago

grchristensen commented 3 years ago

The API needs to take advantage of the profile refactor in order to speed up the scoring process for instructor users.

When the student submits an assignment, the TextProcessor class should be called to preprocess the text into PreprocessedText, which is then saved in some model that is connected to that student. When the instructor asks for an assignment to be scored, all of the previous preprocessed texts are fed into the StyleProfile and then the new preprocessed text is scored with distances.

Before this can be worked on the mocks from https://github.com/grchristensen/avpd/issues/10 need to be completed.

grchristensen commented 3 years ago

@EngineeringForever2018 the mocks are in the profile-refactor branch.