npm install -g yarn@1.22.19
npm run start
npm run deploy
src\Component\Publications\index.jsx
- define a const for bibtex
const AIoTSurvey = `@article{aiotsurvey2024tosn,
title={Artificial Intelligence of Things: A Survey},
author={Siam, Shakhrul Iman and Ahn, Hyunho and Liu, Li and Alam, Samiul and Shen, Hui and Cao, Zhichao and Shroff, Ness and Krishnamachari, Bhaskar and Srivastava, Mani and Zhang, Mi},
journal={ACM Transactions on Sensor Networks (TOSN)},
year={2024}
}`
- add a CodeBlock below
<CodeBlock
title = "Artificial Intelligence of Things: A Survey"
authors = "Shakhrul Iman Siam, Hyunho Ahn, Li Liu, Samiul Alam, Hui Shen, Zhichao Cao, Ness Shroff, Bhaskar Krishnamachari, Mani Srivastava, Mi Zhang."
paper = "https://mi-zhang.github.io/papers/2024_ACMTOSN_AIoTSurvey.pdf"
conference = "ACM Transactions on Sensor Networks (<div class='pubHighlight'>ACM TOSN</div>), August 2024."
bibtex = {AIoTSurvey}
github = "https://github.com/AIoT-MLSys-Lab/AIoT-Survey"
>
</CodeBlock>
src\Component\Projects
- create a project folder in this path
- copy paste another existing project .jsx file and .css file
- create a ProjectPanel in the corresponding research topic .jsx file
<ProjectPanel
link = "./#/EdgeAI/AIoTSurvey"
imageURL = "./images/projects/AIoT_overview.svg"
title = "Artificial Intelligence of Things: A Survey"
content = "The integration ......"
></ProjectPanel>
- update the router
src\Router\index.js
const AIoTSurvey = lazy(
async () => await import('../Component/Projects/AIoTSurvey')
);
{
path: '/EdgeAI/AIoTSurvey',
element: <AIoTSurvey></AIoTSurvey>
},
- update news page
src\Component\News\index.jsx
<NewsCard
imageURL="./images/projects/FambaVLogo.jpg"
title="Famba-V: Fast Vision Mamba with Cross-Layer Token Fusion"
date="Sep. 2024"
content="Famba-V, our work on efficient Vision Mamba is the Best Paper Award winner of ECCV'24 Workshop on Computational Aspects of Deep Learning."
></NewsCard>
- update home page
src\Component\Home\index.jsx
<div className='newDate'>
Sep. 2024
</div>
<div className='newContent'>
Famba-V, our work on efficient Vision Mamba is the <div className='missionHighLight'>Best Paper Award</div> winner of ECCV'24 Workshop on Computational Aspects of Deep Learning.
</div>