doesn't import "from vis.modifiers import Jitteren"
when i try to import
from vis.modifiers import Jitteren
i got an import error:
ModuleNotFoundError: No module named 'vis.modifiers'
i install it through source
having same problem amongst others that I did not have a few months ago when I ran my scripts using this package. Recently, I cloned the repo and installed from there, hoping that it would fix the issues - have version 0.4.1. (edited to put a more relevant screen shot) Any help would be appreciated.

it seems that Jitter is now in input_modifiers so this should work:
from viz.input_modifiers import Jitter
from vis.utils.vggnet import VGG16 ImportError: No module named 'vis.utils.vggnet'
you can try importing vgg directly from keras: from keras.applications.vgg16 import VGG16