In [2]:
%%html
<script type="text/javascript">
show=true;
function toggle(){
if (show){$('div.input').hide();}else{$('div.input').show();}
show = !show}
</script>
<h2><a href="javascript:toggle()" target="_self">Click to toggle code input</a></h2>
Link to the full YouTube video
TL;DW:
Machine learning in astronomy is different than typical applications of machine learning.
In [3]:
from IPython.display import YouTubeVideo
from datetime import timedelta
In [6]:
start = int(timedelta(hours=0, minutes=1, seconds=26).total_seconds())
end = int(timedelta(hours=0, minutes=12, seconds=2).total_seconds())
YouTubeVideo('aA3qdegi8Vw', start=start, end=end)
Out[6]:
In [ ]: