You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The program stops at line "from groma.model.groma import GromaModel". When debugging it, I find it the bottleneck is in the following.
line 24 in groma/model/groma.py
from groma.model.ddetr import CustomDDETRConfig, CustomDDETRModel
line 18 in groma/model/ddetr.py
from transformers.models.deformable_detr.modeling_deformable_detr import DeformableDetrObjectDetectionOutput
Does Anybody who met the problem finally solved it?
The text was updated successfully, but these errors were encountered:
In the pyproject.toml, the module transformers is required and certain version is demanded.
Tried to solve the issue, I changed the version and it works as I have no idea why it funtions.
groma 1.0.0 requires tokenizers==0.12.1, but you have tokenizers 0.19.1 which is incompatible. groma 1.0.0 requires transformers==4.32.0, but you have transformers 4.40.2 which is incompatible. Successfully installed tokenizers-0.19.1 transformers-4.40.2
run groma/eval/run_groma.py
The program stops at line "from groma.model.groma import GromaModel". When debugging it, I find it the bottleneck is in the following.
line 24 in groma/model/groma.py
from groma.model.ddetr import CustomDDETRConfig, CustomDDETRModel
line 18 in groma/model/ddetr.py
from transformers.models.deformable_detr.modeling_deformable_detr import DeformableDetrObjectDetectionOutput
Does Anybody who met the problem finally solved it?
The text was updated successfully, but these errors were encountered: