The Wayback Machine - https://web.archive.org/web/20210917223902/https://github.com/topics/pytorch-lightning
Skip to content
#

pytorch-lightning

Here are 284 public repositories matching this topic...

gaspardbb
gaspardbb commented Jun 19, 2021

Problem

If we pass a Path instance of pathlib to aim.Session(repo=path_repo), the path is silently converted to ''.

Solution

I would suggest editing clean_repo_path in aim.engine.utils.

Simply add:

def clean_repo_path(repo_path: str) -> str:
    if isinstance(repo_path, pathlib.Path):
        repo_path = str(repo_path)

We might also use `pathlib

drscotthawley
drscotthawley commented Jun 30, 2021

📓 Documentation Update

What part of documentation was unclear or wrong?
In https://github.com/airctic/icevision/blob/master/icevision/tfms/README.md
The hyperlink around "aug_tfms" 404's.
Two example images near the bottom do not exist.

Describe the solution you'd like
Proper links and images where they're supposed to be. Where can I find more about "aug_tfms"? What are t

Improve this page

Add a description, image, and links to the pytorch-lightning topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the pytorch-lightning topic, visit your repo's landing page and select "manage topics."

Learn more