Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

### Fixed

- Update expired Google Drive file IDs for politifact and gossipcop datasets.
- Fixed `ogbn_train_cugraph` example for distributed cuGraph ([#10439](https://github.com/pyg-team/pytorch_geometric/pull/10439))
- Added `safe_onnx_export` function with workarounds for `onnx_ir.serde.SerdeError` issues in ONNX export ([#10422](https://github.com/pyg-team/pytorch_geometric/pull/10422))
- Fixed importing PyTorch Lightning in `torch_geometric.graphgym` and `torch_geometric.data.lightning` when using `lightning` instead of `pytorch-lightning` ([#10404](https://github.com/pyg-team/pytorch_geometric/pull/10404), [#10417](https://github.com/pyg-team/pytorch_geometric/pull/10417)))
Expand Down
4 changes: 2 additions & 2 deletions torch_geometric/datasets/upfd.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ class UPFD(InMemoryDataset):
(default: :obj:`False`)
"""
file_ids = {
'politifact': '1KOmSrlGcC50PjkvRVbyb_WoWHVql06J-',
'gossipcop': '1VskhAQ92PrT4sWEKQ2v2-AJhEcpp4A81',
'politifact': '1toou2GO0agoY_OS54LaCWEECQfe93nuq',
'gossipcop': '1DkMAzC7XUUciAxsSujRJt3sq1MqaVI3g',
}

def __init__(
Expand Down
Loading