You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Breaking change) Removes the flags trainable_position and trainable_orientation from Transmitter and Receiver
So, I changed Learning_Materials.ipynb for Sionna 0.16.x.
before
# Create new trainable material with some default valuesnew_mat=RadioMaterial(mat.name+"_train",
relative_permittivity=3.0,
conductivity=0.1,
trainable_relative_permittivity=True,
trainable_conductivity=True)
after
# Create new trainable material with some default valuesnew_mat=RadioMaterial(mat.name+"_train",
relative_permittivity=3.0,
conductivity=0.1)
Running this code requires Sionna 0.15 or later. To run the notebooks on your machine, you also need Jupyter. We recommend Ubuntu 20.04, Python 3.8, and TensorFlow 2.12.
So, I used the following environment.
Ubuntu 20.04
Python 3.8
sionna 0.16.2
tensorflow 2.12.0
The text was updated successfully, but these errors were encountered:
I tried to run Learning_Materials.ipynb with Sionna 0.16.2.
And, I found the following description in NVlabs/sionna#274.
So, I changed
Learning_Materials.ipynb
for Sionna 0.16.x.before
after
Test
https://github.com/NVlabs/diff-rt/blob/main/Learning_Materials.ipynb has training process.
And, this notebook has the following figure.
But, I could not reproduce with Sionna 0.16.2.
Environment
I read README.md.
So, I used the following environment.
The text was updated successfully, but these errors were encountered: