Wu Jiayang
Wu Jiayang
```python class Model(paddle.nn.Layer): """ 输入obs,期望输出-obs """ def __init__(self): super(Model, self).__init__() obs_dim = 1 dim = 128 self.fc1 = paddle.nn.Linear(obs_dim, dim) self.fc2 = paddle.nn.Linear(dim, dim) self.lstm = paddle.nn.LSTM(dim, dim, num_layers=1) self.output_fc1...
期待Pong+PPO+LSTM
> This PR does not resolve, using the conversation id to link to previous sessions but the input works I don't understand "using the conversation id to link to previous...
> This PR does not resolve, using the conversation id to link to previous sessions but the input works This PR is to make sure the 'inputs' field in the...
> Yes, you mean that the input field of the conversation can be updated under the same conversation, because the input is only effective when the conversation link is first...
> This PR does not resolve, using the conversation id to link to previous sessions but the input works What's the mean of 'This PR does not resolve'? Is that...
> #8063 > > This is the problem I encountered, > > maybe I understand wrong, this PR can't solve the problem of the video in issue? This PR can...
> I understand that the conversation table input is valid for the first time. The message table is used for every subsequent interaction, right? right
> Has this feature not been merged? I don't know why they don't merge it, maybe we need more people to push them.
> I tried to merge your code in my project, but it didn't take effect. I modified the three lines of code in those three files and changed them to...