Skip to content
#

experiment-tracking

Here are 23 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

Improve this page

Add a description, image, and links to the experiment-tracking 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 experiment-tracking topic, visit your repo's landing page and select "manage topics."

Learn more