This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
hummingbird
/
fastNLP
Not watched
Unwatch
Watch all
Watch but not notify
2
Star
0
Fork
0
Code
Releases
13
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
fix paddle dataset __getattr__
tags/v1.0.0alpha
x54-729
2 years ago
parent
6e89cb77c3
commit
8b1ed86033
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
fastNLP/core/dataloaders/paddle_dataloader/fdl.py
+ 1
- 1
fastNLP/core/dataloaders/paddle_dataloader/fdl.py
View File
@@ -39,7 +39,7 @@ class _PaddleDataset(Dataset):
def __getattr__(self, item):
try:
self.dataset.__getattribute__(item)
return
self.dataset.__getattribute__(item)
except Exception as e:
raise e
Write
Preview
Loading…
Cancel
Save