acrule / comet

Comet is a Jupyter Notebook extension that tracks changes to the notebook over time.
0 stars 0 forks source link

New Features #6

Open bodily11 opened 6 years ago

bodily11 commented 6 years ago

I love the work you've done with comet. Looks awesome. I am a PhD Candidate in Instructional Psychology and Technology department at Brigham Young University. I conduct learning analytics research and am interested in tracking students use of Jupyter Notebooks for educational purposes. I teach a python programming class that uses Jupyter Notebook.

I looked through the comet code--it looks very helpful. Do you have future plans to add output tracking (errors, outputs, output type, successful code execution, etc.)?

acrule commented 6 years ago

Hi Bob,

We combined comet and comet_server into one python package over at https://github.com/activityhistory/nbcomet, so look there for the most up to date code. We do not have plans to extend the code any further to track errors, output type, etc as metadata in the sqlite database. However, as the code currently stands, it tracks notebook diffs after every action, so you can reconstruct the state of the entire notebook at each step. From there you can see errors, outputs, etc. Thanks for dropping a line.

bodily11 commented 6 years ago

Awesome. Thanks!