Unable to import the model
#1
by dorpxam - opened
The problem is :
ImportError: This modeling file requires the following packages that were not found in your environment: configuration_step_vl, vision_encoder. Run pip install configuration_step_vl vision_encoder
Here to save the day~
Find all (there are two of the vl config and one of the encoder) instances of configuration_step_vl in the python files and add a dot in front of them to localize the import (aka .configuration_step_vl).
And with vision_encoder.
Flies Away~
Excellent answer ! Thank you so much !