hongzimao / pensieve

Neural Adaptive Video Streaming with Pensieve (SIGCOMM '17)
http://web.mit.edu/pensieve/
MIT License
516 stars 279 forks source link

Errors in a3c.py #130

Open confiwent opened 3 years ago

confiwent commented 3 years ago

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')

hongzimao commented 3 years ago

I think you are right, as also pointed out by others https://github.com/hongzimao/pensieve/pull/93