-
Notifications
You must be signed in to change notification settings - Fork 49
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
add support for saving user action logs #189
Comments
Do you think this logging should be done client-side, or server-side (i.e., only when using server mode)? |
If there is a server it can log more stuff, if it's user side it should only log the last change unixtime in the MISC column. I don't think it's a good idea to clog the misc column, but i think having annotime could be an interesting feature, and easy to store. |
Oh! I somehow missed that you had in mind keeping that sort of metadata in the conllu. Last edited time certainly could work that way, but I'd be worried about accumulating too much stuff of that sort, depending on what else you have in mind. |
I think in the CoNLL-U it should be completely restricted to just |
Agreed. What sorts of things would you have logged by the server? |
Well, I have been thinking about stuff that might be useful to training algorithms... for example:
I'm sure there is more stuff too. |
@ftyers So, at the client-side, it should add |
@gstark0 for now I would just add support for updating the AnnoTime for the last changed time later we can decide if we want to log a timestamp every change (it could be a lot of timestamps). |
It would be cool to keep a track of how the user is interacting with annotatrix, this could provide interesting data for training models and for investigating how annotators annotate. In the simplest way
you could have an entry for e.g.
AnnoTime=1512811353
(unixtime) in each token in theMISC
column. Edits could be represented simply by comma separated values,AnnoTime=1512811353,1512811427
.Additional thoughts and suggestions welcome!
The text was updated successfully, but these errors were encountered: