Skip to content
#

pytorch-lightning

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

norse
cpehle
cpehle commented Jul 22, 2021

We should support the pseudo-derivative used in Bellec et al. 2018 and subsequent
work by other authors as implemented for example here:

https://github.com/IGITUGraz/eligibility_propagation/blob/efd02e6879c01cda3fa9a7838e8e2fd08163c16e/Figure_3_and_S7_e_prop_tutorials/models.py#L40-L70

It has the advantage that it naturally lead to sparse gradients and therefore is a good alternative
to f

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