We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PL+TensorBoard can log hierarchical dict after #1152, however, meta_tags.csv has been disabled by the change.
meta_tags.csv
62de794
config.yaml
The text was updated successfully, but these errors were encountered:
can you elaborate on what the .yaml would look like? i kind of like the idea. @luiscape
Sorry, something went wrong.
@williamFalcon thank you for replying.
Roughly, I plan to make the following change for tags_csv replacement with yaml:
yaml.dump()
import yaml with open("config.yaml", "w") as wf: yaml.dump(self.tags, wf)
load_hparams_from_yaml
import yaml def load_hparams_from_yaml(config_yaml: str) -> Dict[str, Any]: if not os.path.isfile(config_yaml): log.warning(f'Missing Tags: {config_yaml}.') return {} with open(config_yaml) as f: tags = yaml.load(f, Loader=yaml.SafeLoader) return tags
I very much support replacing CSV by YAML it is much easier to read and handle (also comment)
S-aiueo32
Successfully merging a pull request may close this issue.
🚀 Feature
Motivation
PL+TensorBoard can log hierarchical dict after #1152, however,
meta_tags.csv
has been disabled by the change.Pitch
meta_tags.csv
back to a hierarchical dict based on their delimiter.Alternatives
62de794
Additional context
meta_tags.csv
, then adoptconfig.yaml
.The text was updated successfully, but these errors were encountered: