-
Notifications
You must be signed in to change notification settings - Fork 280
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
Depends on distutils, which has been removed from python3.12 #83
Comments
doesn't look like @szagoruyko has been activate on twitter / github for years now. |
working fork https://github.com/leo-ware/pytorchviz I also made the pull request. May put the working version on pip if it doesn't get merged. |
that depedencies I believe is looking for pytorch 1. so it's a bit ancient. can comment this code out. the only other thing i see in a lot of papers is the positional embedding - funny circle thing - if svg could somehow spit this out - i think it add something too. pretty much the only reason people are using adobe illustrator for these things. |
@johndpope if the original maintainers don't approve the pull request, would you be interested in publishing a fork? Could create a torchviz2 with the new styling and python 3.12 compatibility. |
if there's interest here - would serve community - happy to help - or happy to support a version published by yourself. When I throw this code / sample into claude.ai opus - it says use pytorch library hiddenlayer instead to get a more undertandable graph. my goal in pickingup this libary was to pull apart the attention models to get better intuition. https://github.com/waleedka/hiddenlayer/blob/master/demos/pytorch_graph.ipynb |
I'm emailing the original author. Hopefully, he'll be happy to merge stuff. I'm currently working on another open-source library where I was hoping to add pytorchviz as a dependency, and I'd rather not be vendoring it just to get 3.12 support. Definitely excited to see how we could extend this package. |
Is there any reply yet? I think there is a big need to continue this torchviz tool and probably move to the orgs repo rather than the individual repo. I see a lot of people, including myself, used it and will continue to use it. Also, some valuable PRs are not merged nor any comment given there. |
Thanks for the cc, looking into the best way forward here. |
Has this been completed? |
@szagoruyko has been offline for some time - consider this project abandonned... |
Sorry for the slow reply. I had a couple of crazy months. I emailed @szagoruyko, and he didn't respond. Based on his personal website, he appears to be doing a startup right now, so this is understandable. I need this project for some of my work, so I've done the minimal changes to make this project work with python 3.12. I just used the looseversion drop in replacement for the original distutils utility. I know there was some discussion of dropping support for older versions of pytorch and removing the dependency, but this seemed like the easiest solution, and it will be fully backwards compatible. The new repo is here. I may try and copy over some of the open pull requests from this library. I'm happy to be a long-term maintainer on this project. If people want to take out pull requests on the new repo, I'll merge them and upload to PyPi. TLDR |
Hey @leo-ware I didn't get any answer either but I still have access to the original pypi project. So I will cut a release and post it there when I have a minute. |
Hello,
it seems that distutils has been removed from python, in favour of setuptools.
When running in python3.12, importing torchviz fails (see error message below [1]) because
dot.py
still explicitly imports distutils: it would be good to fix this dependency, otherwise people will have to drop torchviz from their workflows.Thank you very much in advance!
Cheers,
Pietro
[1]
The text was updated successfully, but these errors were encountered: