• 黄璞's avatar
    Comment wrong in adversarial_crypto model · f2c86f92
    黄璞 authored
    According to the code below:
    ```python
    if key is not None:
          combined_message = tf.concat(axis=1, values=[message, key])
    else:
          combined_message = message
    ```python
    If the key=None, combined_message is just message, not the key.
    f2c86f92
train_eval.py 9.26 KB