Skip to content
Snippets Groups Projects
Commit 795e7733 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent 20433b52
No related branches found
No related tags found
No related merge requests found
......@@ -61,25 +61,34 @@ label_idx = params.index(label_param)
print('data_params: ', data_params)
print('label_param: ', label_param)
x_134 = np.arange(134)
y_134 = np.arange(134)
x_64 = np.arange(64)
y_64 = np.arange(64)
x_134_2 = x_134[3:131:2]
y_134_2 = y_134[3:131:2]
t = np.arange(0, 64, 0.5)
s = np.arange(0, 64, 0.5)
x_128_2 = x_134[3:131:2]
y_128_2 = y_134[3:131:2]
x_128 = x_134[3:131]
y_128 = y_134[3:131]
# x_134 = np.arange(134)
# y_134 = np.arange(134)
# x_64 = np.arange(64)
# y_64 = np.arange(64)
# x_134_2 = x_134[3:131:2]
# y_134_2 = y_134[3:131:2]
# t = np.arange(0, 64, 0.5)
# s = np.arange(0, 64, 0.5)
#
# x_128_2 = x_134[3:131:2]
# y_128_2 = y_134[3:131:2]
# x_128 = x_134[3:131]
# y_128 = y_134[3:131]
#----------- New
# x_134_2 = x_134[1:134:2]
# t = np.arange(1, 66, 0.5)
#--------------------------
x_64 = np.arange(64)
y_64 = np.arange(64)
t = np.arange(0, 64, 0.5)
s = np.arange(0, 64, 0.5)
x_128_2 = slice(3, 131, 2)
y_128_2 = slice(3, 131, 2)
x_128 = slice(3, 131)
y_128 = slice(3, 131)
def build_residual_conv2d_block(conv, num_filters, block_name, activation=tf.nn.relu, padding='SAME',
kernel_initializer='he_uniform', scale=None,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment