I have every package installed (tensorflow, keras, sci-kit, etc.).
I cannot use the stuff from
from tensorflow.keras.preprocessing.image import ImageDataGenerator
from tensorflow.keras.applications.vgg16 import VGG16
from tensorflow.keras.models import Sequential
I have this code from ChatGPT (because I couldn’t find any other way of getting this stuff from other sources). But I get these errors:
Unresolved reference 'ImageDataGenerator'
Unresolved reference 'VGG16'
Unresolved reference 'Sequential'
So how do I make this work?