Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
489 views
in Technique[技术] by (71.8m points)

python - TypeError: configurable() got an unexpected keyword argument 'denylist'

I installed the package, but I cannot import it. I get this error: TypeError: configurable() got an unexpected keyword argument 'denylist' I appreciate it if you could help me to fix this. Below you can see the complete error that I got.

import trax

I installed this package(Deep learning package), and when I import it, I get this error:

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-1-3afdcd9c7c68> in <module>
----> 1 import trax

~/opt/anaconda3/lib/python3.7/site-packages/trax/__init__.py in <module>
     16 """Trax top level import."""
     17 
---> 18 from trax import data
     19 from trax import fastmath
     20 from trax import layers

~/opt/anaconda3/lib/python3.7/site-packages/trax/data/__init__.py in <module>
     18 
     19 from trax.data import inputs
---> 20 from trax.data import tf_inputs
     21 
     22 

~/opt/anaconda3/lib/python3.7/site-packages/trax/data/tf_inputs.py in <module>
    504 
    505 # Makes the function accessible in gin configs, even with all args denylisted.
--> 506 @gin.configurable(denylist=['dataset', 'training'])
    507 def cifar10_no_augmentation_preprocess(dataset, training):
    508   del training

TypeError: configurable() got an unexpected keyword argument 'denylist'

I really need to work with this package, and I don't know how to fix it. My OS: macOS Big Sur Python version: Python 3.7.4

question from:https://stackoverflow.com/questions/65898686/typeerror-configurable-got-an-unexpected-keyword-argument-denylist

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I found the solution: !pip install --upgrade -q gin git+https://github.com/google/[email protected]


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...