yunhe

Results 3 issues of yunhe

Hi, i'm learning from your code, and find that the below function seems to have an useless parameter **newNodeId**,please check it. ```java protected void modifyVariableId(String oldNodeId, String newNodeId) { if...

A few questions about frontier fields: 1. How to generate frontier field of an action when doing inference 2. Is it possible that if frontier field is wrong, the result...

```python class Inception1(nn.Module): def __init__(self, input_dim, conv_dim=64): super(Inception1, self).__init__() self.cnn = nn.Sequential( nn.Conv1d(input_dim, conv_dim, kernel_size=1), nn.ReLU(), nn.Conv1d(conv_dim, conv_dim, kernel_size=2), nn.ReLU() ) self.global_avg_pool = nn.AvgPool1d(input_dim) self.global_max_pool = nn.MaxPool1d(input_dim) def forward(self, x):...