"git@developer.sourcefind.cn:OpenDAS/ollama.git" did not exist on "f59c4d03f789f745ffce6c4b68fcf218fac85435"
Comment wrong in adversarial_crypto model
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.
Showing
Please register or sign in to comment