Skip to content

Commit 700be8d

Browse files
committed
numpy import
1 parent ab592a4 commit 700be8d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

mitdeeplearning/lab3.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import base64
33
from IPython.display import HTML
44
import gym
5+
import numpy as np
56

67
def play_video(filename):
78
encoded = base64.b64encode(io.open(filename, 'r+b').read())

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ def get_dist(pkgname):
1212
'numpy',
1313
'regex',
1414
'tqdm',
15+
'gym'
1516

1617
]
1718
tf_ver = '2.0.0a'
@@ -21,13 +22,13 @@ def get_dist(pkgname):
2122
setup(
2223
name = 'mitdeeplearning', # How you named your package folder (MyLib)
2324
packages = ['mitdeeplearning'], # Chose the same as "name"
24-
version = '0.5.3', # Start with a small number and increase it with every change you make
25+
version = '0.5.4', # Start with a small number and increase it with every change you make
2526
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
2627
description = 'Official software labs for MIT Introduction to Deep Learning (http://introtodeeplearning.com)', # Give a short description about your library
2728
author = 'Alexander Amini', # Type in your name
2829
author_email = '[email protected]', # Type in your E-Mail
2930
url = 'http://introtodeeplearning.com', # Provide either the link to your github or to your website
30-
download_url = 'https://github.com/aamini/introtodeeplearning_labs/archive/v0.5.3.tar.gz', # I explain this later on
31+
download_url = 'https://github.com/aamini/introtodeeplearning_labs/archive/v0.5.4.tar.gz', # I explain this later on
3132
keywords = ['deep learning', 'neural networks', 'tensorflow', 'introduction'], # Keywords that define your package best
3233
install_requires=install_deps,
3334
classifiers=[

0 commit comments

Comments
 (0)