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 reference #241

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
24 changes: 24 additions & 0 deletions website/website/pages/en/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,29 @@ pip install pytorchvideo
</div>
);

const refExample = `${pre}python
@inproceedings{fan2021pytorchvideo, \\
author = {Haoqi Fan and Tullie Murrell and Heng Wang and Kalyan Vasudev Alwala and Yanghao Li and Yilei Li and Bo Xiong and Nikhila Ravi and Meng Li and Haichuan Yang and Jitendra Malik and Ross Girshick and Matt Feiszli and Aaron Adcock and Wan-Yen Lo and Christoph Feichtenhofer},
title = {{PyTorchVideo}: A Deep Learning Library for Video Understanding},
booktitle = {Proceedings of the 29th ACM International Conference on Multimedia},
year = {2021},
note = {\url{https://pytorchvideo.org/}},
}
`;
const Reference = () => (
<div
className="productShowcaseSection"
id="quickstart"
style={{textAlign: 'center'}}>
<h2>Get Started</h2>
<Container>
<ol>
<MarkdownBlock>{refExample}</MarkdownBlock>
</ol>
</Container>
</div>
);

const UseCases = () => (
<div className="productShowcaseSection" style={{textAlign: 'center'}}>
<h1>Some use cases</h1>
Expand Down Expand Up @@ -261,6 +284,7 @@ pip install pytorchvideo
<div className="landingPage mainContainer">
<Features />
<QuickStart />
<Reference />
</div>
</div>
);
Expand Down