External Email - Use Caution
Hi,
I try to run the https://secure-web.cisco.com/1OB24sXJsXKpFV3_YZf2OoUc5HIGSgT5Os8CiD0Kw5KeUJ9... code, but I got stuck.
I created a conda env with tensorflow 2.20, this gives me a
ValueError: Unrecognized keyword arguments passed to BatchNormalization: {'fused': False}
Same with tensorflow 2.16.
It seems, that the 'fused' parameter was removed after version 2.4. Tensorflow 2.4 was available under python 3.6, but with conda create -n freesurfer python=3.6 and pip install tensorflow==2.4.0 I can only install versions from 2.16 onwards. Version 2.4 is not available.
Removing the {'fused': False} gives me an error at
input_shape = last_tensor.shape.as_list()[1:] ^^^^^^^^^^^^^^^^^ AttributeError: 'list' object has no attribute 'shape'
How can I solve this dependency problem?
Jörg