#!/usr/bin/env python # coding: utf-8 # Open In Colab   Open in Kaggle # # Day Summary # # __Creator: John Butler__ # In[ ]: # @title Install and import feedback gadget get_ipython().system('pip3 install vibecheck datatops --quiet') from vibecheck import DatatopsContentReviewContainer def content_review(notebook_section: str): return DatatopsContentReviewContainer( "", # No text prompt notebook_section, { "url": "https://pmyvdlilci.execute-api.us-east-1.amazonaws.com/klab", "name": "neuromatch_cn", "user_key": "y1x3mpx5", }, ).render() feedback_prefix = "W1D1_DaySummary" # In[ ]: # @title Slides from IPython.display import IFrame link_id = "jdumz" print(f"If you want to download the slides: https://osf.io/download/{link_id}/") IFrame(src=f"https://mfr.ca-1.osf.io/render?url=https://osf.io/{link_id}/?direct%26mode=render%26action=download%26mode=render", width=854, height=480) # In[ ]: # @title Submit your feedback content_review(f"{feedback_prefix}_Day_Summary")