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 citation #383

Merged
merged 4 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,3 +264,15 @@ pip install pytorch_frame
```

See [the installation guide](https://pytorch-frame.readthedocs.io/en/latest/get_started/installation.html) for other options.

## Cite

If you use PyTorch Frame in your work, please cite our paper (Bibtex below).
```
@article{hu2024pytorch,
title={PyTorch Frame: A Modular Framework for Multi-Modal Tabular Learning},
author={Hu, Weihua and Yuan, Yiwen and Zhang, Zecheng and Nitta, Akihiro and Cao, Kaidi and Kocijan, Vid and Leskovec, Jure and Fey, Matthias},
journal={arXiv preprint arXiv:2404.00776},
year={2024}
}
```
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ full=[
"scikit-learn",
"xgboost>=1.7.0, <2.0.0",
"optuna>=3.0.0",
"optuna-integration",
"mpmath==1.3.0",
"catboost",
"lightgbm",
Expand Down
2 changes: 1 addition & 1 deletion torch_frame/testing/image_embedder.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ def __init__(
super().__init__()
self.out_channels = out_channels

def forward_embed(self, images: list[Image]) -> Tensor:
def forward_embed(self, images: list[Image.Image]) -> Tensor:
return torch.rand(len(images), self.out_channels)
Loading