TorchDSP / torchsig

TorchSig is an open-source signal processing machine learning toolkit based on the PyTorch data handling pipeline.
MIT License
170 stars 38 forks source link

os has no attribute named root #151

Closed jcr0269 closed 1 year ago

jcr0269 commented 1 year ago

scripts/generate_sig53.py

if not os.root.isdir(root): os.mkdir(root)

Should be:

if not os.path.isdir(root): os.mkdir(root)

MattCarrickPL commented 1 year ago

This has been patched in v0.4.1 (https://github.com/TorchDSP/torchsig/tree/v0.4.1) and later versions