Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkHershey committed Aug 19, 2024
1 parent f86ac56 commit 5c3bdd0
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 20 deletions.
2 changes: 1 addition & 1 deletion web/src/components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Footer = () => {
<div style={{ height: 70 }}></div>
<hr className="mt-auto mx-5"></hr>
<div className="container d-flex flex-row justify-content-center">
<p className="text-capitalize fw-light text-muted"><a href="https://github.com/sutdcv" className="text-reset">SUTD Computer Vision & Learning Group (VLG)</a> © 2023. All rights reserved.</p>
<p className="text-capitalize fw-light text-muted"><a href="https://github.com/sutdcv" className="text-reset">SUTD Computer Vision & Learning Group (VLG)</a> © 2021-2024. All rights reserved.</p>
</div>
</footer>
)
Expand Down
42 changes: 27 additions & 15 deletions web/src/components/PageDownload.js
Original file line number Diff line number Diff line change
@@ -1,29 +1,41 @@
import RequestForm from './RequestForm'


const PageDownload = () => {
return (
<div>
<div className="jumbotron jumbotron-fluid py-5 bg-dark">
<div className="container">
<h1 className="display-3 text-white text-center" id="dataset-download-request-form">Dataset Download Request Form</h1>
<h1 className="display-3 text-white text-center" id="dataset-download-request-form">Dataset Download</h1>
</div>
<div className="mt-5 px-5 container text-light text-center">
<p className="alert alert-secondary">
To download the dataset (inc. <code>Annotations</code>, <code>Video Features</code>, and <code>Raw Videos</code>), you need to fill in the form below.
</div>
<div className="container my-4 py-4 px-3 jumbotron jumbotron-fluid text-center" style={{ minWidth: 400 }}>

<h5 className="mb-4">Terms & Conditions</h5>

<div className="container text-center modal-dialog-centered align-items-center flex-column">
<p className={"alert alert-primary text-start"} style={{ maxWidth: 500 }}>
The Singapore University of Technology and Design (SUTD) provides access
to the <em className="fw-bold">SUTD-TrafficQA Dataset</em> (referred to as "the Dataset" below)
under the following conditions:
<p></p>
<ul>
<li>The Dataset should only be used for non-commercial scientific research purposes. Any other use is strictly prohibited.</li>
<li>Showing videos and images from the Dataset are only allowed in academic publications or presentations.</li>
<li>The Dataset must not be shared or redistributed in part or full with any third-party individual or organization.</li>
<li>The Dataset must not be altered to produce a new dataset without written consent from the authors.</li>
</ul>
</p>
</div>

<p className="text-center">By downloading the dataset, you agree to the terms and conditions above.</p>

<div className="container">
<a href="https://bit.ly/SUTDTrafficQA-Google" className="button btn btn-outline-primary mt-3 mx-1" target="_blank" rel="noopener noreferrer">Google Drive Link</a>
<a href="https://bit.ly/SUTDTrafficQA-OneDrive" className="button btn btn-outline-primary mt-3 mx-1" target="_blank" rel="noopener noreferrer">MS OneDrive Link</a>
</div>
</div>
<div className={"container my-4 py-4 px-3 jumbotron shadow"} style={{minWidth: 400}}>
{/* <p className="mb-5 alert alert-success">
<p><span className="fst-italic fw-bold me-2">News:</span> We are currently hosting a <a href="https://sutdcv.github.io/multi-modal-video-reasoning/">Multi-Modal Video Reasoning and Analyzing Competition</a> at <b>ICCV 2021</b> from 20 May 2021 to 5 July 2021,
the dataset access link will only be sent after the competition. To get early access to the dataset, you are encouraged to participate the aforementioned competition!</p>
<p><span className="fst-italic fw-bold me-2">Note:</span> If you have gained access to the dataset from us previously, you are not eligible to participate in the competition.</p>
<p><span className="fst-italic fw-bold me-2">Note:</span> If you have registered for the competition, you DO NOT need to request the dataset here again.</p>
</p> */}

<RequestForm />
</div>


</div>
)
}
Expand Down
8 changes: 4 additions & 4 deletions web/src/components/SectionTeam.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ import PersonProfileSimple from "./PersonProfileSimple"
const SectionTeam = () => {
return (
<div className="row">
<PersonProfileSimple name="Li Xu" link="https://github.com/SUTDCV" title="" org="SUTD" />
<PersonProfileSimple name="Li Xu" link="https://scholar.google.com/citations?user=eZWXOqYAAAAJ" title="" org="SUTD" />
<PersonProfileSimple name="Mark He Huang" link="https://github.com/MarkHershey" title="" org="SUTD" />
<PersonProfileSimple name="Jun Liu" link="https://istd.sutd.edu.sg/people/faculty/liu-jun" title="" org="SUTD" />
<PersonProfileSimple name="Jun Liu" link="https://scholar.google.com/citations?user=Q5Ild8UAAAAJ" title="" org="SUTD" />
<PersonProfileSimple name="Tran Nguyen Bao Long" link="https://www.linkedin.com/in/tnbl265/" title="" org="SUTD" />
<PersonProfileSimple name="Yutian Lin" link="https://www.linkedin.com/in/yutian-lin-4745721bb/" title="" org="SUTD" />
<PersonProfileSimple name="Renhang Liu" link="https://www.linkedin.com/in/renhang-liu-39566519a/" title="" org="SUTD" />
<PersonProfileSimple name="Yingjie Qiao" link="https://www.linkedin.com/in/yingjie-qiao/" title="" org="SUTD" />
<PersonProfileSimple name="Xun Long Ng" link="https://github.com/SUTDCV" title="" org="SUTD" />
<PersonProfileSimple name="Xun Long Ng" link="https://scholar.google.com/citations?user=7wcY9PYAAAAJ" title="" org="SUTD" />
<PersonProfileSimple name="Koh Kai Ting" link="https://www.linkedin.com/in/kai-ting-koh-b814bb194/" title="" org="SUTD" />
<PersonProfileSimple name="Christabel Dorothy" link="https://github.com/SUTDCV" title="" org="SUTD" />
<PersonProfileSimple name="Christabel Dorothy" link="https://www.sutd.edu.sg/" title="" org="SUTD" />
</div>
)
}
Expand Down

0 comments on commit 5c3bdd0

Please sign in to comment.