Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
KidsXH committed Nov 8, 2024
1 parent de78383 commit fedd5b5
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 6 deletions.
10 changes: 10 additions & 0 deletions _posts/HammingVis.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: 'HammingVis: A Visual Analytics Approach for Understanding Erroneous Outcomes of Quantum Computing in Hamming Space'
date: '2024-12-01'
authorsPrev: Jieyi Chen
authorsPost: Li Zheng, Jiaying Lu, Hui Lu, Yiwen Ren, Wei Chen
year: 2024
venue: 'Graphical Models (Proc. of ChinaGraph 2024)'
venueAbbr: 'ChinaGraph/GMOD'
published: true
---
11 changes: 11 additions & 0 deletions _posts/NeuronautLLM.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: 'Exploring the Neural Landscape: Visual Analytics of Neuron Activation in Large Language Models with NeuronautLLM'
date: '2024-12-01'
authorsPrev: Ollie Woodman
authorsPost: Hui Lu, Yiwen Ren, Minfeng Zhu, Wei Chen
year: 2024
venue: 'Graphical Models (Proc. of ChinaGraph 2024)'
venueAbbr: 'ChinaGraph/GMOD'
published: true
award: 'ChinaGraph 2024 Best Paper'
---
10 changes: 10 additions & 0 deletions _posts/SPROUT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: 'SPROUT: Authoring Programming Tutorials with Interactive Visualization of Large Language Model Generation Process'
date: '2024-06-14'
authorsPrev: Yihan Liu
authorsPost: Luoxuan Weng, Ollie Woodman, Yi Yang, Wei Chen
year: 2024
venue: 'IEEE Transactions on Visualization and Computer Graphics'
venueAbbr: 'TVCG'
published: true
---
11 changes: 8 additions & 3 deletions components/PublicationCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ export const PublicationCard = (props: PublicationCardProps) => {
const imageFile = `/assets/${props.slug}/coverImage.png`;
return (
<div className='flex xl:flex-row flex-col shadow-md mb-1 p-2'>
<div className='flex xl:w-52 w-full items-center px-2 mr-1'>
<div className='flex xl:w-[200px] w-full items-center mr-2'>
<Image
className='w-full xl:max-h-[8rem] max-h-none m-auto'
className='w-full xl:w-[192px] xl:h-[108px] max-h-none m-auto'
src={`${imageFile}`}
width={1920}
height={1080}
alt={props.title}
></Image>
</div>
<div className='flex flex-col pt-2 xl:px-0 px-2'>
<div className='flex flex-col pt-2 xl:px-0 px-2 max-w-[800px]'>
<div className='font-bold mb-2'>{props.title}</div>
<div className='flex flex-row mb-2'>
{props.authorsPrev && props.authorsPost ? (
Expand Down Expand Up @@ -57,6 +57,11 @@ export const PublicationCard = (props: PublicationCardProps) => {
<span className='text-sm pr-1'>{props.venue}</span>
</>
)}
{
props.award ? (
<span className='text-sm font-bold pr-1'>{`🏅${props.award}`}</span>
) : null
}
</div>
<div className='flex flex-row py-1'>
<Button slug={props.slug} file={'full-paper.pdf'}>PDF</Button>
Expand Down
4 changes: 2 additions & 2 deletions pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ date: 2023-07-22

# About Me

Hi, I'm Zhen Wen, currently a third year Ph.D student at Zhejiang University, working under the supervision of [Prof. Wei Chen](http://www.cad.zju.edu.cn/home/chenwei/) in the [VAI Group](https://zjuvag.org).
Hi, I'm Zhen Wen, currently a fourth year Ph.D student at Zhejiang University, working under the supervision of [Prof. Wei Chen](http://www.cad.zju.edu.cn/home/chenwei/) in the [VAI Group](https://zjuvag.org).

My research interests encompass the domains of data visualization, quantum computing, and software engineering.
My research interests encompass the domains of data visualization, quantum computing, and generative AI.
I am interested in enhancing software engineering workflows, both in the quantum and classical domains, by integrating data intelligence and interactive visualizations.

---
Expand Down
Binary file added public/assets/HammingVis/coverImage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/NeuronautLLM/coverImage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/SPROUT/coverImage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion types/publication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export type Publication = {
video: string;
published: boolean;
coverImage: string;
award: string;
}

export const PublicationFields = [
Expand All @@ -26,5 +27,6 @@ export const PublicationFields = [
'code',
'video',
'published',
'coverImage'
'coverImage',
'award'
];

0 comments on commit fedd5b5

Please sign in to comment.