Rename#
- class bayesflow.adapters.transforms.Rename(from_key: str, to_key: str)[source]#
Bases:
Transform
Transform to rename keys in data dictionary. Useful to rename variables to match those required by approximator. This transform can only rename one variable at a time.
- Parameters:
- from_keystr
Variable name that should be renamed
- to_keystr
New variable name
Examples
>>> adapter = ( bf.adapters.Adapter() # rename the variables to match the required approximator inputs .rename("theta", "inference_variables") .rename("x", "inference_conditions") )