You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and there was no video, so i changed the last code cell to: mp4 = open('gan.mp4','rb').read() data_url = "data:video/mp4;base64," + base64.b64encode(mp4).decode() HTML(""" <video width=400 controls autoplay loop> <source src="%s" type="video/mp4"> </video> """ % data_url)
The text was updated successfully, but these errors were encountered:
path: tutorial_gans/tutorial_gans.ipynb
Some tf functions are deprecated
I added:
!pip install tensorflow==1.15
and there was no video, so i changed the last code cell to:
mp4 = open('gan.mp4','rb').read() data_url = "data:video/mp4;base64," + base64.b64encode(mp4).decode() HTML(""" <video width=400 controls autoplay loop> <source src="%s" type="video/mp4"> </video> """ % data_url)
The text was updated successfully, but these errors were encountered: