Open rpeloff opened 1 year ago
What version of python are you using? 3.3+ don't require it.
https://stackoverflow.com/questions/448271/what-is-init-py-for
As far as I know, __init__.py
should be in every importable package except namespace packages. Even though it is true that in some (many) cases everything will work as expected without such a file. If there is no __init__.py
, then technically it is considered a "namespace package", and it does have some subtle differences.
References:
__init__.py
files in non-namespace packages)
The directory t5x/t5x/examples/decoder_only is missing an
__init__.py
file. This means that the modules (decoder-only layers and network) cannot be imported in gin configurations.