zachgk commented on issue #15053: ImportError: cannot import name 'transforms' URL: https://github.com/apache/incubator-mxnet/issues/15053#issuecomment-495779868 Here are a few options that might work: 1. You could try editing the package name of bmxnet so that it does not conflict with MXNet. Then, you could `import mxnet as mx` and `bmxnet as bmx`. You can then specify that the vision transforms come from MXNet proper and everything else comes from BMXNet. I don't know if you will run into weird errors due to differences between mxnet and bmxnet if you do this, though. 2. You could try finding the commits from mxnet that added gluon.data.vision.transforms and cherry-picking them over to BMXNet. 3. You could try git merging bmxnet and mxnet master. This is probably the most proper way, but I would bet this gives you a ton of horrible merge conflicts to work through. It may also be worth raising this as an issue on the BMXNet repo to see if they have any other ideas.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
