You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new get_config method returns the config dictionary but can also be used to view the current config. In this case, we should consider ways to pretty print the config so it can be easily read. One way to do this: We could sub-class dictionary and override the print method.
Current behavior
Here is the get_config() method. It's hard for me to know where the transformers dictionary begins.
RDT 1.0.0 (dev branch)
Problem Description
The new
get_config
method returns the config dictionary but can also be used to view the current config. In this case, we should consider ways to pretty print the config so it can be easily read. One way to do this: We could sub-class dictionary and override the print method.Current behavior
Here is the
get_config()
method. It's hard for me to know where thetransformers
dictionary begins.Expected behavior
A good example of pretty printing a dictionary is the
detect_initial_config
method. It's much easier to parse the two dictionaries.The text was updated successfully, but these errors were encountered: