Skip to content

Commit ac6da8a

Browse files
nkarpachevv-goncharenko
authored andcommitted
Fix notebook dependencies & enable videos in Colab
1 parent c13a030 commit ac6da8a

File tree

1 file changed

+20
-9
lines changed

1 file changed

+20
-9
lines changed

week1_09_approx_qlearning/week09_approximate_Q_learning.ipynb

+20-9
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
"# os.system('apt-get install -y xvfb')\n",
2525
"# os.system('wget https://raw.githubusercontent.com/yandexdataschool/Practical_DL/fall18/xvfb -O ../xvfb')\n",
2626
"# os.system('apt-get install -y python-opengl ffmpeg')\n",
27-
"# os.system('pip install pyglet==1.2.4')\n",
2827
"\n",
2928
"# XVFB will be launched if you run on a server\n",
3029
"import os\n",
@@ -380,18 +379,30 @@
380379
"metadata": {},
381380
"outputs": [],
382381
"source": [
383-
"# show video\n",
382+
"# Show video. This may not work in some setups. If it doesn't\n",
383+
"# work for you, you can download the videos and view them locally.\n",
384+
"\n",
385+
"import sys\n",
386+
"from pathlib import Path\n",
387+
"from base64 import b64encode\n",
384388
"from IPython.display import HTML\n",
385-
"import os\n",
386389
"\n",
387-
"video_names = list(\n",
388-
" filter(lambda s: s.endswith(\".mp4\"), os.listdir(\"./videos/\")))\n",
390+
"video_paths = sorted([s for s in Path('videos').iterdir() if s.suffix == '.mp4'])\n",
391+
"video_path = video_paths[-3] # You can also try other indices\n",
392+
"\n",
393+
"if 'google.colab' in sys.modules:\n",
394+
" # https://stackoverflow.com/a/57378660/1214547\n",
395+
" with video_path.open('rb') as fp:\n",
396+
" mp4 = fp.read()\n",
397+
" data_url = 'data:video/mp4;base64,' + b64encode(mp4).decode()\n",
398+
"else:\n",
399+
" data_url = str(video_path)\n",
389400
"\n",
390401
"HTML(\"\"\"\n",
391402
"<video width=\"640\" height=\"480\" controls>\n",
392403
" <source src=\"{}\" type=\"video/mp4\">\n",
393404
"</video>\n",
394-
"\"\"\".format(\"./videos/\"+video_names[-1])) # this may or may not be _last_ video. Try other indices"
405+
"\"\"\".format(data_url))"
395406
]
396407
},
397408
{
@@ -405,9 +416,9 @@
405416
"metadata": {
406417
"anaconda-cloud": {},
407418
"kernelspec": {
408-
"display_name": "Py3 research env",
419+
"display_name": "Python 3",
409420
"language": "python",
410-
"name": "py3_research"
421+
"name": "python3"
411422
},
412423
"language_info": {
413424
"codemirror_mode": {
@@ -419,7 +430,7 @@
419430
"name": "python",
420431
"nbconvert_exporter": "python",
421432
"pygments_lexer": "ipython3",
422-
"version": "3.6.7"
433+
"version": "3.7.3"
423434
}
424435
},
425436
"nbformat": 4,

0 commit comments

Comments
 (0)