-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: use documentercitations.jl for citation management
- Loading branch information
Showing
12 changed files
with
157 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[deps] | ||
Boltz = "4544d5e4-abc5-4dea-817f-29e4c205d9c8" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
DocumenterCitations = "daee34ce-89f3-4625-b898-19384cb65244" | ||
DocumenterVitepress = "4710194d-e776-4893-9690-8d956a29c365" | ||
Lux = "b2108857-7c20-44ae-9111-449ecde12c47" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
@article{dosovitskiy2020image, | ||
title = {An image is worth 16x16 words: Transformers for image recognition at scale}, | ||
author = {Dosovitskiy, Alexey and Beyer, Lucas and Kolesnikov, Alexander and Weissenborn, Dirk and Zhai, Xiaohua and Unterthiner, Thomas and Dehghani, Mostafa and Minderer, Matthias and Heigold, Georg and Gelly, Sylvain and others}, | ||
journal = {arXiv preprint arXiv:2010.11929}, | ||
year = {2020} | ||
} | ||
|
||
@article{simonyan2014very, | ||
title = {Very deep convolutional networks for large-scale image recognition}, | ||
author = {Simonyan, Karen}, | ||
journal = {arXiv preprint arXiv:1409.1556}, | ||
year = {2014} | ||
} | ||
|
||
@article{greydanus2019hamiltonian, | ||
title = {Hamiltonian neural networks}, | ||
author = {Greydanus, Samuel and Dzamba, Misko and Yosinski, Jason}, | ||
journal = {Advances in neural information processing systems}, | ||
volume = {32}, | ||
year = {2019} | ||
} | ||
|
||
@article{krizhevsky2012imagenet, | ||
title = {Imagenet classification with deep convolutional neural networks}, | ||
author = {Krizhevsky, Alex and Sutskever, Ilya and Hinton, Geoffrey E}, | ||
journal = {Advances in neural information processing systems}, | ||
volume = {25}, | ||
year = {2012} | ||
} | ||
|
||
@inproceedings{he2016deep, | ||
title = {Deep residual learning for image recognition}, | ||
author = {He, Kaiming and Zhang, Xiangyu and Ren, Shaoqing and Sun, Jian}, | ||
booktitle = {Proceedings of the IEEE conference on computer vision and pattern recognition}, | ||
pages = {770--778}, | ||
year = {2016} | ||
} | ||
|
||
@inproceedings{xie2017aggregated, | ||
title = {Aggregated residual transformations for deep neural networks}, | ||
author = {Xie, Saining and Girshick, Ross and Doll{\'a}r, Piotr and Tu, Zhuowen and He, Kaiming}, | ||
booktitle = {Proceedings of the IEEE conference on computer vision and pattern recognition}, | ||
pages = {1492--1500}, | ||
year = {2017} | ||
} | ||
|
||
@inproceedings{szegedy2015going, | ||
title = {Going deeper with convolutions}, | ||
author = {Szegedy, Christian and Liu, Wei and Jia, Yangqing and Sermanet, Pierre and Reed, Scott and Anguelov, Dragomir and Erhan, Dumitru and Vanhoucke, Vincent and Rabinovich, Andrew}, | ||
booktitle = {Proceedings of the IEEE conference on computer vision and pattern recognition}, | ||
pages = {1--9}, | ||
year = {2015} | ||
} | ||
|
||
@inproceedings{huang2017densely, | ||
title = {Densely connected convolutional networks}, | ||
author = {Huang, Gao and Liu, Zhuang and Van Der Maaten, Laurens and Weinberger, Kilian Q}, | ||
booktitle = {Proceedings of the IEEE conference on computer vision and pattern recognition}, | ||
pages = {4700--4708}, | ||
year = {2017} | ||
} | ||
|
||
@article{trockman2022patches, | ||
title = {Patches are all you need?}, | ||
author = {Trockman, Asher and Kolter, J Zico}, | ||
journal = {arXiv preprint arXiv:2201.09792}, | ||
year = {2022} | ||
} | ||
|
||
@article{howard2017mobilenets, | ||
title = {MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications}, | ||
author = {Howard, Andrew G}, | ||
journal = {arXiv preprint arXiv:1704.04861}, | ||
year = {2017} | ||
} | ||
|
||
@inproceedings{sandler2018mobilenetv2, | ||
title = {Mobilenetv2: Inverted residuals and linear bottlenecks}, | ||
author = {Sandler, Mark and Howard, Andrew and Zhu, Menglong and Zhmoginov, Andrey and Chen, Liang-Chieh}, | ||
booktitle = {Proceedings of the IEEE conference on computer vision and pattern recognition}, | ||
pages = {4510--4520}, | ||
year = {2018} | ||
} | ||
|
||
@inproceedings{howard2019searching, | ||
title = {Searching for mobilenetv3}, | ||
author = {Howard, Andrew and Sandler, Mark and Chu, Grace and Chen, Liang-Chieh and Chen, Bo and Tan, Mingxing and Wang, Weijun and Zhu, Yukun and Pang, Ruoming and Vasudevan, Vijay and others}, | ||
booktitle = {Proceedings of the IEEE/CVF international conference on computer vision}, | ||
pages = {1314--1324}, | ||
year = {2019} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
# `Boltz.Layers` API Reference | ||
|
||
--- | ||
|
||
```@autodocs | ||
Modules = [Boltz.Layers] | ||
``` | ||
|
||
```@bibliography | ||
Pages = [@__FILE__] | ||
Style = :authoryear | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.