Skip to content
New issue

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

Add str method to datamodule #20301

Merged
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
a011366
Add feature implementation to datamodule for str method
MrWhatZitToYaa Sep 25, 2024
137e7b5
Removed list / tuple case for datamodule str method
MrWhatZitToYaa Sep 25, 2024
efe0c3c
Added test cases for DataModule string function
MrWhatZitToYaa Sep 25, 2024
23326d7
Reverted accidental changes in DataModule
MrWhatZitToYaa Sep 25, 2024
122cf6d
Updated dataloader str method
MrWhatZitToYaa Nov 20, 2024
9acf680
Merge branch 'master' into feature/9947_dataloader-string
lantiga Nov 20, 2024
51a4901
Improvements to implementation of str method for datamodule
MrWhatZitToYaa Nov 21, 2024
d37dfb0
Merge branch 'master' into feature/9947_dataloader-string
lantiga Nov 25, 2024
1ce0f92
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 25, 2024
20a2a0c
Implementing str method for datamodule
MrWhatZitToYaa Nov 25, 2024
e03aefb
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 25, 2024
6d05cfe
Add string method to datamodule
MrWhatZitToYaa Nov 25, 2024
acd2f73
Implementing str mehtod for dataloader
MrWhatZitToYaa Dec 4, 2024
b08e1fe
Implementing str fucntion for datamodule
MrWhatZitToYaa Dec 4, 2024
21029d2
Implementing str method for datamodule
MrWhatZitToYaa Dec 5, 2024
330a88c
Finilized required adjustments for dataloader string proposal method
MrWhatZitToYaa Dec 5, 2024
dbaabaa
Merge branch 'master' into feature/9947_dataloader-string
MrWhatZitToYaa Dec 6, 2024
5bf252e
Merge branch 'master' into feature/9947_dataloader-string
MrWhatZitToYaa Dec 10, 2024
06e4f1c
Implementing str method
MrWhatZitToYaa Dec 10, 2024
63200a0
Merge branch 'master' into feature/9947_dataloader-string
lantiga Dec 10, 2024
33cda77
Update src/lightning/pytorch/core/datamodule.py
lantiga Dec 10, 2024
f492167
Update src/lightning/pytorch/core/datamodule.py
lantiga Dec 10, 2024
36fdb57
Merge branch 'master' into feature/9947_dataloader-string
lantiga Dec 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
pre-commit-ci[bot] committed Nov 25, 2024
commit e03aefba76b9c1e05a94bcb9afb66abf237616e2
2 changes: 1 addition & 1 deletion src/lightning/pytorch/core/datamodule.py
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@

import inspect
import os
from collections.abc import Sized, Iterable
from collections.abc import Iterable, Sized
from typing import IO, Any, Optional, Union, cast

from lightning_utilities import apply_to_collection