Spaces:
Running
Running
ameerazam08
commited on
Commit
·
eb9960b
1
Parent(s):
cd8c136
added new papers
Browse files- package-lock.json +10 -1
- package.json +2 -1
- src/app/about-event.tsx +19 -1
- src/components/about-card.tsx +7 -9
package-lock.json
CHANGED
@@ -13,7 +13,8 @@
|
|
13 |
"@material-tailwind/react": "^2.1.2",
|
14 |
"next": "13.4.0",
|
15 |
"react": "18",
|
16 |
-
"react-dom": "18"
|
|
|
17 |
},
|
18 |
"devDependencies": {
|
19 |
"@types/node": "20",
|
@@ -3978,6 +3979,14 @@
|
|
3978 |
"react": "^18.2.0"
|
3979 |
}
|
3980 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3981 |
"node_modules/react-is": {
|
3982 |
"version": "16.13.1",
|
3983 |
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
|
|
13 |
"@material-tailwind/react": "^2.1.2",
|
14 |
"next": "13.4.0",
|
15 |
"react": "18",
|
16 |
+
"react-dom": "18",
|
17 |
+
"react-icons": "^5.0.1"
|
18 |
},
|
19 |
"devDependencies": {
|
20 |
"@types/node": "20",
|
|
|
3979 |
"react": "^18.2.0"
|
3980 |
}
|
3981 |
},
|
3982 |
+
"node_modules/react-icons": {
|
3983 |
+
"version": "5.0.1",
|
3984 |
+
"resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.0.1.tgz",
|
3985 |
+
"integrity": "sha512-WqLZJ4bLzlhmsvme6iFdgO8gfZP17rfjYEJ2m9RsZjZ+cc4k1hTzknEz63YS1MeT50kVzoa1Nz36f4BEx+Wigw==",
|
3986 |
+
"peerDependencies": {
|
3987 |
+
"react": "*"
|
3988 |
+
}
|
3989 |
+
},
|
3990 |
"node_modules/react-is": {
|
3991 |
"version": "16.13.1",
|
3992 |
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
package.json
CHANGED
@@ -16,7 +16,8 @@
|
|
16 |
"@material-tailwind/react": "^2.1.2",
|
17 |
"next": "13.4.0",
|
18 |
"react": "18",
|
19 |
-
"react-dom": "18"
|
|
|
20 |
},
|
21 |
"devDependencies": {
|
22 |
"@types/node": "20",
|
|
|
16 |
"@material-tailwind/react": "^2.1.2",
|
17 |
"next": "13.4.0",
|
18 |
"react": "18",
|
19 |
+
"react-dom": "18",
|
20 |
+
"react-icons": "^5.0.1"
|
21 |
},
|
22 |
"devDependencies": {
|
23 |
"@types/node": "20",
|
src/app/about-event.tsx
CHANGED
@@ -17,6 +17,24 @@ import React from 'react';
|
|
17 |
|
18 |
const EVENT_INFO = [
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
{
|
21 |
title: "Speech Research",
|
22 |
description: "This page lists some speech related research at Microsoft Research Asia, conducted by the team led by Xu Tan. The research topics cover text to speech, singing voice synthesis, music generation, automatic speech recognition, etc. Some research are open-sourced via NeuralSpeech and Muzic.",
|
@@ -28,7 +46,7 @@ const EVENT_INFO = [
|
|
28 |
{
|
29 |
title: "NaturalSpeech 3: Zero-Shot Speech Synthesis \
|
30 |
with Factorized Codec and Diffusion Models",
|
31 |
-
description: "
|
32 |
subTitle: "Zero-Shot Voice Clone / Audio",
|
33 |
imageName : "zero-shot.png",
|
34 |
paper_links :"https://arxiv.org/pdf/2403.03100.pdf"
|
|
|
17 |
|
18 |
const EVENT_INFO = [
|
19 |
|
20 |
+
{
|
21 |
+
title: "Animatable Gaussians: Learning Pose-dependent Gaussian Maps for High-fidelity Human Avatar Modeling",
|
22 |
+
description: "Modeling animatable human avatars from RGB videos is a long-standing and challenging problem. Recent works usually adopt MLP-based neural radiance fields (NeRF) to represent 3D humans, but it remains difficult for pure MLPs to regress pose-dependent garment details.",
|
23 |
+
subTitle: "Gaussion/3D Human Avatar",
|
24 |
+
imageName : "football.mp4",
|
25 |
+
paper_links :"https://animatable-gaussians.github.io/"
|
26 |
+
},
|
27 |
+
|
28 |
+
|
29 |
+
{
|
30 |
+
title: "StyleGaussian: Instant 3D Style Transfer \
|
31 |
+
with Gaussian Splatting",
|
32 |
+
description: " StyleGaussian, a novel 3D style transfer technique that allows instant transfer of any image's style to a 3D scene at 10 frames per second (fps). Leveraging 3D Gaussian Splatting (3DGS), StyleGaussian achieves style transfer without compromising its real-time rendering ability and multi-view consistency. Project :https://kunhao-liu.github.io/StyleGaussian/",
|
33 |
+
subTitle: "Gaussian/3D Style Transfer",
|
34 |
+
imageName : "ignatius.mp4",
|
35 |
+
paper_links :"https://github.com/Kunhao-Liu/StyleGaussian"
|
36 |
+
},
|
37 |
+
|
38 |
{
|
39 |
title: "Speech Research",
|
40 |
description: "This page lists some speech related research at Microsoft Research Asia, conducted by the team led by Xu Tan. The research topics cover text to speech, singing voice synthesis, music generation, automatic speech recognition, etc. Some research are open-sourced via NeuralSpeech and Muzic.",
|
|
|
46 |
{
|
47 |
title: "NaturalSpeech 3: Zero-Shot Speech Synthesis \
|
48 |
with Factorized Codec and Diffusion Models",
|
49 |
+
description: "Ttext-to-speech (TTS) model NaturalSpeech 3. FACodec converts complex speech waveform into disentangled subspaces representing speech attributes of content, prosody, timbre, and acoustic details and reconstruct high-quality speech waveform from these attributes. Hf-Demo : https://huggingface.co/spaces/amphion/naturalspeech3_facodec",
|
50 |
subTitle: "Zero-Shot Voice Clone / Audio",
|
51 |
imageName : "zero-shot.png",
|
52 |
paper_links :"https://arxiv.org/pdf/2403.03100.pdf"
|
src/components/about-card.tsx
CHANGED
@@ -56,17 +56,15 @@ export function AboutCard({ title, description, subTitle,imageName,paper_links }
|
|
56 |
color="white"
|
57 |
className="mt-2 mb-10 text-base w-full lg:w-10/12 text font-normal"
|
58 |
>
|
59 |
-
{description}
|
60 |
</Typography>
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
|
|
66 |
</a>
|
67 |
-
</Typography>
|
68 |
-
|
69 |
-
</Button>
|
70 |
|
71 |
</CardBody>
|
72 |
</Card>
|
|
|
56 |
color="white"
|
57 |
className="mt-2 mb-10 text-base w-full lg:w-10/12 text font-normal"
|
58 |
>
|
59 |
+
{description}
|
60 |
</Typography>
|
61 |
+
<a href={paper_links} target="_blank">
|
62 |
+
<Button color="white" placeholder={""}>
|
63 |
+
<Typography placeholder={""} color="blue-gray" className="m-0 mb-0 text-base w-full lg:w-6/6 text-center font-normal">
|
64 |
+
More Details
|
65 |
+
</Typography>
|
66 |
+
</Button>
|
67 |
</a>
|
|
|
|
|
|
|
68 |
|
69 |
</CardBody>
|
70 |
</Card>
|