Provenance and differencing of the Jupyter Notebook Execution
Project description
ProvBook: Provenance of the Notebook.
ProvBook is an extension of the Jupyter Notebook. It provides features to capture and display the provenance of Jupyter Notebook executions, download the notebook in machine-readable format along with the provenance information and compare the input and output of each cell in different runs.
ProvBook provides three features:
- Provenance of Jupyter Notebook: Tracks and stores the provenance of a Jupyter Notebook execution.
- Machine-Readability of Jupyter Notebook: Provides the feature to download the notebooks in a machine-readable format.
- Diff of Jupyter Notebook Runs: Compare the results of different executions of a Jupyter Notebook code cell along with the input.
Demo
A video showing the installation and use of ProvBook with an example is available here.
Publication
ProvBook: Provenance-based Semantic Enrichment of Interactive Notebooks for Reproducibility, Sheeba Samuel and Birgitta König-Ries, The 17th International Semantic Web Conference (ISWC) 2018 Demo Track
Installation
Prerequisite: Jupyter Notebook
Install provbook with pip:
pip install provbook
After the installation, start the Jupyter notebook and you will see the ProvBook icons added in the toolbar as shown below.
ProvBook
Provenance of Jupyter Notebook
This module tracks the provenance of the Jupyter Notebook. It captures and stores the provenance of the run/execution of the cells over the course of time. Every time the notebook is executed, the provenance of the execution is stored in the metadata of the cell. Every cell is extended with a provenance area with a slider. The provenance area shows the history of the execution of each code cell. The provenance information of the cell execution includes the start and end time of each execution, total number of runs, the total time it took to run the code cell, the source code and the output got during that particular execution. It also shows the provenance of text cells where it displays the modified time and the source.
ProvBook icons are added in the toolbar for displaying the provenance of selected or all cells and the provenance difference of executions of cells.
ProvBook also adds a provenance menu in the Jupyter Notebook interface.
A user can toggle the provenance display for a selected cell from Cell -> Provenance -> Toggle visibility (selected). A user can clear the provenance data from the metadata of the notebook from Cell -> Provenance -> Clear (all).
Machine-Readability of Jupyter Notebook
This module provides the user the feature to download the notebooks in a machine-readable format. It provides the user the ability to convert the notebooks into RDF (Resource Description Framework)along with the provenance traces and execution environment attributes. This helps to semantically represent the provenance information of notebook execution. This is a command-line utility which takes a notebook as input and generates the RDF Turtle file. The RDF is generated using the REPRODUCE-ME ontology extended from W3C standard PROV-O and the P-Plan ontology. The RDF generated from the notebook can be converted back to a Jupyter Notebook. The notebook can be downloaded as RDF from the Notebook interface.
Example usage of notebook_rdf from command line
Convert your notebook to RDF
notebook_rdf your_notebook.ipynb
or
notebook_rdf --from notebook your_notebook.ipynb --to RDF
Convert your RDF to notebook
notebook_rdf notebook_rdf.ttl
or
notebook_rdf --from RDF notebook_rdf.ttl --to notebook
The notebook can also be downloaded as RDF from the File Menu -> Download as -> RDF (.ttl).
Diff of Jupyter Notebook Runs
This module helps users to compare the results of different executions of a Jupyter Notebook. The user is provided with a dropdown to select two executions based on the starting time of the executions. The users can select the original experimenter’s execution with their own execution of the Jupyter Notebook as well. When the user selects the two executions, the difference in the input and the output of these executions are shown side by side. If there are differences in the input or output, the difference is highlighted for the user to distinguish the change. This module is based on the nbdime from the Project Jupyter. It extends the nbdime tool and calls the API from nbdime to see the difference between the provenance of each execution of a notebook code cell.
Internals
The provenance is stored in the metadata of the notebook. Every time a code cell is executed, a new entry 'provenance' is added to the metadata of the code cell. The start and end time of the execution is added with the time it took to execute. The source and the output obtained from executing the cell is added to the metadata so that it can be shared with other collaborators to verify the output. The ProvBookDiff is based on the nbdime provided by Jupyter Notebook Development team.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file provbook-1.1.0.tar.gz
.
File metadata
- Download URL: provbook-1.1.0.tar.gz
- Upload date:
- Size: 5.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a5f3bb5a32b70da09adbeffdc75f18e417c5efc29e46f727a4199195b034f86 |
|
MD5 | fdafc4729e0bb7c0c378e295caf95a77 |
|
BLAKE2b-256 | b350acd675e9b23e410a4e59e013abaed1290d00156f2335b93968703a5ba1ca |
File details
Details for the file provbook-1.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: provbook-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 6.2 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83ac9b2a862f93f5ace0be28d736cedc7f0452b64caefe94e3673a9fc45f789d |
|
MD5 | 1bbcee1a9dc1d7ed5ca36f5d19336223 |
|
BLAKE2b-256 | 1d3740487295f6be689f8d3513f8d0601eb77ab4bd1b844f8275483956698688 |