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
There are two typos on line 70 and 168 of a3c.py, which result in an input error, I think, split_5 = tflearn.fully_connected(inputs[:, **4:5**, -1], 128, activation='relu')
should be split_5 = tflearn.fully_connected(inputs[:, **5:6**, -1], 128, activation='relu')
The text was updated successfully, but these errors were encountered:
Hi, Hongzi,
There are two typos on line 70 and 168 of a3c.py, which result in an input error, I think,
split_5 = tflearn.fully_connected(inputs[:, **4:5**, -1], 128, activation='relu')
should be
split_5 = tflearn.fully_connected(inputs[:, **5:6**, -1], 128, activation='relu')
The text was updated successfully, but these errors were encountered: