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
I'm not sure if I'm doing something wrong, I'm using mlflow instead of tensorboard as a logger. I've used the defaults i.e.
mlflow = loggers.MLFlowLogger() trainer = pl.Trainer.from_argparse_args(args, logger=mlflow)
I'm ending up with the following folder structure
\mlflow \mlflow\1 \mlflow\1\{guid}\artifacts \mlflow\1\{guid}\metrics \mlflow\1\{guid}\params \mlflow\1\{guid}\meta.yaml \1\{guid}\checkpoints
i.e. the checkpoints are in the wrong location, they should be in the \mlflow folder.
\mlflow
Perhaps this is an mlflow rather than pytorch-lightning issue?
I'm using pytorch-lightning 0.8.5 on macos running in python 3.7.6
The text was updated successfully, but these errors were encountered:
@david-waterworth mind try the latest 0.9rc12?
Sorry, something went wrong.
It was fixed here: #2502 The checkpoints subfolder will go here: mlflow\1{guid}\checkpoints, is that what you want @david-waterworth ?
mlflow\1{guid}\checkpoints
Thanks @awaelchli yes that's what I want - thanks!
No branches or pull requests
I'm not sure if I'm doing something wrong, I'm using mlflow instead of tensorboard as a logger. I've used the defaults i.e.
I'm ending up with the following folder structure
\mlflow
\mlflow\1
\mlflow\1\{guid}\artifacts
\mlflow\1\{guid}\metrics
\mlflow\1\{guid}\params
\mlflow\1\{guid}\meta.yaml
\1\{guid}\checkpoints
i.e. the checkpoints are in the wrong location, they should be in the
\mlflow
folder.Perhaps this is an mlflow rather than pytorch-lightning issue?
I'm using pytorch-lightning 0.8.5 on macos running in python 3.7.6
The text was updated successfully, but these errors were encountered: