google-research / scenic

Scenic: A Jax Library for Computer Vision Research and Beyond
Apache License 2.0
3.31k stars 433 forks source link

AttributeError: module 'flax.core' has no attribute 'pop' #742

Open ahx1997 opened 1 year ago

ahx1997 commented 1 year ago

I need "pop" to use "train_lib_deprecated/train_utils.py" but i cant find it

kimseongah commented 1 year ago

Hi, I found "pop" by debugging flax. Change all flax.core.pop in "train_lib_deprecated/train_utils.py" to flax.core.FrozenDict.pop :)

ahx1997 commented 1 year ago

Hi, I found "pop" by debugging flax. Change all flax.core.pop in "train_lib_deprecated/train_utils.py" to flax.core.FrozenDict.pop :)

thank u,this question has been resolved