Coder Social home page Coder Social logo

Comments (7)

Kaixhin avatar Kaixhin commented on June 22, 2024

For starters, which version of Python are you using (Python 3 should be fine) and what version of PyTorch (v0.3.0 or v0.3.1 should be fine)?

from rainbow.

forhonourlx avatar forhonourlx commented on June 22, 2024

Hi Kaixhin,
I am using windows 10 Python 3.5, PyTorch version may be 0.4.0 which is complied by https://github.com/peterjc123/pytorch-scripts

Thanks for your help.

from rainbow.

Kaixhin avatar Kaixhin commented on June 22, 2024

Not really sure what the problem is. Can you replace line 53 in env.py with return torch.stack(list(self.state_buffer), 0) to see if that works? If it doesn't can you print out self.state_buffer and paste the result here?

from rainbow.

forhonourlx avatar forhonourlx commented on June 22, 2024

With "list(self.state_buffer)", it does work.
self.state_buffer: deque([
0 0 0 ... 0 0 0
0 0 0 ... 0 0 0
0 0 0 ... 0 0 0
... ?? ...
0 0 0 ... 0 0 0
0 0 0 ... 0 0 0
0 0 0 ... 0 0 0
[torch.cuda.FloatTensor of size (84,84) (GPU 0)]
,
0 0 0 ... 0 0 0
0 0 0 ... 0 0 0
0 0 0 ... 0 0 0
... ?? ...
0 0 0 ... 0 0 0
0 0 0 ... 0 0 0
0 0 0 ... 0 0 0
[torch.cuda.FloatTensor of size (84,84) (GPU 0)]
,
0 0 0 ... 0 0 0
0 0 0 ... 0 0 0
0 0 0 ... 0 0 0
... ?? ...
0 0 0 ... 0 0 0
0 0 0 ... 0 0 0
0 0 0 ... 0 0 0
[torch.cuda.FloatTensor of size (84,84) (GPU 0)]
,
0.0000 0.0000 0.0000 ... 0.0000 0.0000 0.0000
0.0000 0.0000 0.0000 ... 0.0000 0.0000 0.0000
0.0000 0.0000 0.0000 ... 0.0000 0.0000 0.0000
... ?? ...
0.3098 0.3098 0.3098 ... 0.3098 0.3098 0.3098
0.3098 0.3098 0.3098 ... 0.3098 0.3098 0.3098
0.3098 0.3098 0.3098 ... 0.3098 0.3098 0.3098
[torch.cuda.FloatTensor of size (84,84) (GPU 0)]
], maxlen=4)
(84,84) (GPU 0)]
], maxlen=4)

What's more, another exception occurs:

Traceback (most recent call last):
File "main.py", line 103, in
next_state, reward, done = env.step(action) # Step
File "C:\Users\simon\Desktop\DQN\RL-AlphaGO\Rainbow-master\env.py", line 63, in step
reward += self.ale.act(self.actions.get(action))
File "C:\Program Files\Python35\lib\site-packages\atari_py\ale_python_interface.py", line 159, in act
return ale_lib.act(self.obj, int(action))
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'

from rainbow.

forhonourlx avatar forhonourlx commented on June 22, 2024

......
self.actions.get(action): 4
self.actions.get(action): 4
self.actions.get(action): 4
self.actions.get(action): 4
self.actions.get(action): 1
self.actions.get(action): 1
self.actions.get(action): 1
self.actions.get(action): 1
self.actions.get(action): None
Traceback (most recent call last):
File "main.py", line 103, in
next_state, reward, done = env.step(action) # Step
File "C:\Users\simon\Desktop\DQN\RL-AlphaGO\Rainbow-master\env.py", line 63, in step
reward += self.ale.act(self.actions.get(action))
File "C:\Program Files\Python35\lib\site-packages\atari_py\ale_python_interface.py", line 159, in act
return ale_lib.act(self.obj, int(action))
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'

from rainbow.

Kaixhin avatar Kaixhin commented on June 22, 2024

That's a different problem, so could you open a separate issue for that (so I can track this specific problem separately)?

Before I close this issue I think there may be a bigger problem you have with PyTorch. Try running the following code, and if you get an error then you should post it as a PyTorch issue.

from collections import deque
import torch
x = deque([torch.ones(3), torch.ones(3)])
torch.stack(x)

from rainbow.

forhonourlx avatar forhonourlx commented on June 22, 2024

from collections import deque
import torch
x = deque([torch.ones(3), torch.ones(3)])
torch.stack(x)
Traceback (most recent call last):
File "", line 1, in
TypeError: stack(): argument 'tensors' (position 1) must be tuple of Tensors, not collections.deque

torch.stack(list(x))
1 1 1
1 1 1
[torch.FloatTensor of size (2,3)]

Thanks. I will post it as a PyTorch issue.

from rainbow.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.