An implementation of Deep Generative Model of Radars from DeepMind in PyTorch
Execute pip install -r requirements.txt
to install required packages (except for torch).
For installing torch, please check out https://pytorch.org/get-started/locally/ to figure out the version that works on your device.
numpy.ndarray
with proper data type (e.g. int16
, float64
)..dat
or .npy
. (No headers please!)For more information, please check out numpy's documentation.
.csv
file. (optional)
If rain records are not prepared, it will be calculated automatically in our program.
Example of csv: index | nonzeros |
---|---|
0 | number of nonzeros of image 0 |
1 | number of nonzeros of image 1 |
... | number of nonzeros of images |
N-1 | number of nonzeros of image N-1 |
Step 3: Prepare config file. Please see configs/README.md
Step 4: Execute the code
python3 main.py -c /path/to/your/config -m train
python3 main.py -c /path/to/your/config -m val
python3 main.py -c /path/to/your/config -m test
Execute this command to see training results.
tensorboard --logdir /path/where/records/are/stored