Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Could not reproduce the result with Sionna 0.16.2 #6

Open
atinfinity opened this issue Apr 15, 2024 · 0 comments
Open

Could not reproduce the result with Sionna 0.16.2 #6

atinfinity opened this issue Apr 15, 2024 · 0 comments

Comments

@atinfinity
Copy link

I tried to run Learning_Materials.ipynb with Sionna 0.16.2.
And, I found the following description in NVlabs/sionna#274.

(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 values
new_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 values
new_mat = RadioMaterial(mat.name + "_train",
                        relative_permittivity=3.0,
                        conductivity=0.1)

Test

https://github.com/NVlabs/diff-rt/blob/main/Learning_Materials.ipynb has training process.
And, this notebook has the following figure.

image

But, I could not reproduce with Sionna 0.16.2.

image

Environment

I read README.md.

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant