Hello,
I'm using a notebook that runs experiments on the inference gym and I'm having issues importing the gym. The code works on Colab and I had it working earlier on my local machine. But something broke when I fired up a new notebook...
The only additional step I took before starting the new notebook is running the following commandpip install tensorflow_probability[tfds]
which was recommended after I attempted to load the German Credit example, and which is required to load real datasets (and that worked just fine). But now I wonder if this may have broken something.
Here's the error:
----> 6 from inference_gym import using_jax as gym
and the error message at the end:
ValueError: Arg specs do not match: original=FullArgSpec(args=['input', 'out_type', 'name'], varargs=None, varkw=None, defaults=(None, None), kwonlyargs=[], kwonlydefaults=None, annotations={}), new=FullArgSpec(args=['input', 'out_type', 'name'], varargs=None, varkw=None, defaults=(tf.int32, None), kwonlyargs=[], kwonlydefaults=None, annotations={}), fn=<function size_v2 at 0x7feeed7c78b0>
The full message is much no longer and I can post it if it helps. I'm looking for some guidance interpreting the error message.
Thank you for your help!Charles