On of the long standing critic we have seen is also the core philosophy of transformers: single model, single file
.
For the past 4 years we were adamant on having no inheritance in transformers
. The core motivation stems from our values and are the following:
transformers
but not the model itself.
-> we do not allow code paths
-> we do not allow one liners
-> we force meaningful variable names
-> we do not allow inheriting from other modelsWe introduces the make fix-copies
along with the # Copied from
macros, which help re-using the code, but in the past 2 years we realized the limitation from it.
It’s an alpha tool / feature that introduces a new linter
. The linter converts a modular
file to a single model, single file
. The key idea is to allow people to add new models using inheritance, which will make identifying differences between models a lot easier, but keeping the single model single file policy.
When you design your new model using modularity, you just need to think in the most pythonic way, the linter is just going to “flatten” or “unravel” 1 level of inheritance.
The linter will convert the modular_my_model.py
to the classic modeling_my_model.py
, from which we will import everything as usual. But, importing from the modular file or importing from the modeling file should yield the same results!
It is also a drop in replacement for our # Copied from
markers.
The “linter”, which unravels the inheritance and creates all single-files from the modular file, will flatten the inheritance while trying to be invisible to Python users. For example:
You should be able to write everything (the tokenizer, the image processor, the model, the config) in this modular
file, and the corresponding files will be created for you.
We are also introducing a new test, that makes sure the generated content matches what is present in the modular_xxxx.py
You can find a list of examples
It is not a replacement for the modeling code (yet?), and if your model is not based on anything else that ever existed, then you can add a modeling
file as usual.