def generator_model_qpsk(no_bits_in_a_frame):
"""
Now the outputs will have 2-d, consisting of real and image parts
input should be the same output.
"""
model = Sequential()
model.add(Conv1D(
2, 2,
subsample_length=2,
input_shape=(no_bits_in_a_frame, 1)))
return model
评论列表
文章目录