Skip to content

Commit cd1ff79

Browse files
authored
Merge pull request #183 from jrzaurin/wide_deep_recsys
Wide deep recsys
2 parents 4af577a + e75c119 commit cd1ff79

33 files changed

+3941
-41
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ tmp_dir/
2121
weights/
2222
pretrained_weights/
2323
model_weights/
24+
prepared_data/
2425

2526
# Unit Tests/Coverage
2627
.coverage

CITATION.cff

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
cff-version: "1.2.0"
2+
authors:
3+
- family-names: Zaurin
4+
given-names: Javier Rodriguez
5+
orcid: "https://orcid.org/0000-0002-1082-1107"
6+
- family-names: Mulinka
7+
given-names: Pavol
8+
orcid: "https://orcid.org/0000-0002-9394-8794"
9+
doi: 10.5281/zenodo.7908172
10+
message: If you use this software, please cite our article in the
11+
Journal of Open Source Software.
12+
preferred-citation:
13+
authors:
14+
- family-names: Zaurin
15+
given-names: Javier Rodriguez
16+
orcid: "https://orcid.org/0000-0002-1082-1107"
17+
- family-names: Mulinka
18+
given-names: Pavol
19+
orcid: "https://orcid.org/0000-0002-9394-8794"
20+
date-published: 2023-06-24
21+
doi: 10.21105/joss.05027
22+
issn: 2475-9066
23+
issue: 86
24+
journal: Journal of Open Source Software
25+
publisher:
26+
name: Open Journals
27+
start: 5027
28+
title: "pytorch-widedeep: A flexible package for multimodal deep
29+
learning"
30+
type: article
31+
url: "https://joss.theoj.org/papers/10.21105/joss.05027"
32+
volume: 8
33+
title: "pytorch-widedeep: A flexible package for multimodal deep
34+
learning"

README.md

+33-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/jrzaurin/pytorch-widedeep/graphs/commit-activity)
1313
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/jrzaurin/pytorch-widedeep/issues)
1414
[![Slack](https://img.shields.io/badge/slack-chat-green.svg?logo=slack)](https://join.slack.com/t/pytorch-widedeep/shared_invite/zt-soss7stf-iXpVuLeKZz8lGTnxxtHtTw)
15+
[![DOI](https://joss.theoj.org/papers/10.21105/joss.05027/status.svg)](https://doi.org/10.21105/joss.05027)
1516

1617
# pytorch-widedeep
1718

@@ -38,6 +39,9 @@ The content of this document is organized as follows:
3839
- [How to Contribute](#how-to-contribute)
3940
- [Acknowledgments](#acknowledgments)
4041
- [License](#license)
42+
- [Cite](#cite)
43+
- [BibTex](#bibtex)
44+
- [APA](#apa)
4145

4246
### Introduction
4347

@@ -82,7 +86,7 @@ without a ``deephead`` component can be formulated as:
8286

8387

8488
Where σ is the sigmoid function, *'W'* are the weight matrices applied to the wide model and to the final
85-
activations of the deep models, *'a'* are these final activations,
89+
activations of the deep models, *'a'* are these final activations,
8690
φ(x) are the cross product transformations of the original features *'x'*, and
8791
, and *'b'* is the bias term.
8892
In case you are wondering what are *"cross product transformations"*, here is
@@ -331,4 +335,31 @@ Vision](https://www.pyimagesearch.com/deep-learning-computer-vision-python-book/
331335
This work is dual-licensed under Apache 2.0 and MIT (or any later version).
332336
You can choose between one of them if you use this work.
333337

334-
`SPDX-License-Identifier: Apache-2.0 AND MIT`
338+
`SPDX-License-Identifier: Apache-2.0 AND MIT`
339+
340+
### Cite
341+
342+
#### BibTex
343+
344+
```
345+
@article{Zaurin_pytorch-widedeep_A_flexible_2023,
346+
author = {Zaurin, Javier Rodriguez and Mulinka, Pavol},
347+
doi = {10.21105/joss.05027},
348+
journal = {Journal of Open Source Software},
349+
month = jun,
350+
number = {86},
351+
pages = {5027},
352+
title = {{pytorch-widedeep: A flexible package for multimodal deep learning}},
353+
url = {https://joss.theoj.org/papers/10.21105/joss.05027},
354+
volume = {8},
355+
year = {2023}
356+
}
357+
```
358+
359+
#### APA
360+
361+
```
362+
Zaurin, J. R., & Mulinka, P. (2023). pytorch-widedeep: A flexible package for
363+
multimodal deep learning. Journal of Open Source Software, 8(86), 5027.
364+
https://doi.org/10.21105/joss.05027
365+
```

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.3.1

0 commit comments

Comments
 (0)