"'SupervisionSet' object has no attribute 'lazy'"
See original GitHub issueWhen running lhotse cut simple
I get the above error, which comes from this line:
if all(m is None or m.lazy for m in (supervision_set, feature_set, recording_set)):
Looking at SupervisionSet I don’t see an attribute lazy
, so I guess there was a code change that removed it without also modifying the above code?
edit: I fixed it by putting if False
so it goes into the non lazy branch and making load_manifest_lazy_or_eager
always load non-lazily
Issue Analytics
- State:
- Created a year ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
AttributeError: module 'tensorboard' has no attribute 'lazy' #1862
v2.train' has no attribute 'SessionRunHook' instead. Is it possible you had tb-nightly installed as well as 1.12.2? They ...
Read more >AttributeError: module 'tensorboard' has no attribute 'lazy'
Show activity on this post. First pip uninstall tensorflow-tensorboard and then pip install tensorboard .
Read more >AttributeError: module 'tensorboard' has no attribute 'lazy'
I'm using tensorboard, but getting this error. import tensorboard.lazy as _lazy AttributeError: module 'tensorboard' has no attribute 'lazy'.
Read more >API Reference — lhotse 1.12.0.dev documentation
Indicates whether this manifest was opened in lazy (read-on-the-fly) mode or not. Apply transform_fn to each item in this manifest and return a...
Read more >xgboost.pdf - Read the Docs
tools is usually available with your Python distribution, if not ... commands will reuse that shared object instead of compiling it again.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
it works, thanks
I haven’t tested it with a feature manifest input, I’ll follow up on this.