Skip to content

Commit b8d17b6

Browse files
authored
Fix FCResidualBlock by removing relu (#368)
<img width="785" alt="Screenshot 2024-02-29 at 1 08 04 PM" src="https://github.com/pyg-team/pytorch-frame/assets/16249234/c3e7940b-3b62-4143-91f7-da8a44d03bb1">
1 parent e90f32a commit b8d17b6

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1818
### Changed
1919

2020
- Changed a workflow of Encoder's `na_forward` method resulting in performance boost ([#364](https://github.com/pyg-team/pytorch-frame/pull/364))
21+
- Removed ReLU applied in `FCResidualBlock` ([#368](https://github.com/pyg-team/pytorch-frame/pull/368))
2122

2223
### Deprecated
2324

torch_frame/nn/models/resnet.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ def forward(self, x: Tensor) -> Tensor:
9292
x = self.shortcut(x)
9393

9494
out = out + x
95-
out = self.relu(out)
9695

9796
return out
9897

0 commit comments

Comments
 (0)