There was an error while loading. Please reload this page.
1 parent d63df90 commit 39b13acCopy full SHA for 39b13ac
1 file changed
hive/agents/qnets/conv.py
@@ -66,7 +66,7 @@ def __init__(
66
raise ValueError("The lengths of the parameter lists must be the same")
67
68
# Convolutional Layers
69
- channels.insert(0, in_dim[0])
+ channels = [in_dim[0], *channels]
70
conv_seq = []
71
for i in range(0, len(channels) - 1):
72
conv_seq.append(
0 commit comments