Skip to content

Commit

Permalink
Deploying to gh-pages from @ 2b6076b 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
AricGamma committed Jun 13, 2024
1 parent cd64107 commit 8d78f36
Show file tree
Hide file tree
Showing 16 changed files with 93 additions and 55 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<template>
<section>
<h3>{{ title }}</h3>
<h3 v-if="title">{{ title }}</h3>
<h4 v-if="subtitle">{{ subtitle }}</h4>
<div class="panel">
<div ref="carouselElement" :id="id" class="relative" data-twe-carousel-init data-twe-carousel-slide
data-twe-ride="carousel" data-twe-interval="9999999">
Expand Down Expand Up @@ -60,10 +61,12 @@
interface Props {
id?: string
title?: string
subtitle?: string
items?: string[][]
}
const { props } = defineProps<{ props: Props }>()
const title = props.title || ''
const subtitle = props.subtitle || ''
const items = (props.items || []).map(v => v.map(sub => new URL(`../${sub}`, import.meta.url).href))
const id = props.id || title.replaceAll(" ", "")
Expand Down Expand Up @@ -122,6 +125,10 @@ section {
}
}
h4 {
@apply text-lg mb-3
}
.video-group {
video {
width: 49%;
Expand Down
Binary file added assets/best_visual_results-CybPBLwa.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 assets/exp_1-DNoPaoUs.mp4
Binary file not shown.
Binary file added assets/exp_2-CDpzk8lC.mp4
Binary file not shown.
1 change: 1 addition & 0 deletions assets/index-BQ1bjaxG.css

Large diffs are not rendered by default.

46 changes: 0 additions & 46 deletions assets/index-BcoKkNzn.js

This file was deleted.

1 change: 0 additions & 1 deletion assets/index-CX54T6Nv.css

This file was deleted.

46 changes: 46 additions & 0 deletions assets/index-CwpnKgod.js

Large diffs are not rendered by default.

39 changes: 35 additions & 4 deletions assets/index-qZ9T98Ml.json → assets/index-DvqIxUX5.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,13 @@
"github": "https://github.com/fudan-generative-vision/hallo",
"huggingface": "https://huggingface.co/fudan-generative-ai/hallo"
},
"mainVideo": "assets/video/main_video.mp4"
"mainVideo": ""
}
},
{
"template": "abstract",
"props": {
"figure": "assets/img/best_visual_results.png",
"content": "The field of portrait image animation, driven by speech audio input, has experienced significant advancements in the generation of realistic and dynamic portraits. This research delves into the complexities of synchronizing facial movements and creating visually appealing, temporally consistent animations within the framework of diffusion-based methodologies. Moving away from traditional paradigms that rely on parametric models for intermediate facial representations, our innovative approach embraces the end-to-end diffusion paradigm and introduces a hierarchical audio-driven visual synthesis module to enhance the precision of alignment between audio inputs and visual outputs, encompassing lip, expression, and pose motion. Our proposed network architecture seamlessly integrates diffusion-based generative models, a UNet-based denoiser, temporal alignment techniques, and a reference network. The proposed hierarchical audio-driven visual synthesis offers adaptive control over expression and pose diversity, enabling more effective personalization tailored to different identities. Through a comprehensive evaluation that incorporates both qualitative and quantitative analyses, our approach demonstrates obvious enhancements in image and video quality, lip synchronization precision, and motion diversity."
}
},
Expand All @@ -105,11 +106,41 @@
}
},
{
"template": "single-video",
"template": "video-comparision",
"props": {
"title": "Cross-ID Showcase",
"title": "Ablation Study-Motion Scale Control",
"subtitle": "Lip Control",
"items": [
"assets/video/singing/1.mp4"
[
"assets/video/ablation/lip_1.mp4",
"assets/video/ablation/lip_2.mp4"
]
]
}
},
{
"template": "video-comparision",
"props": {
"title": "",
"subtitle": "Expression Control",
"items": [
[
"assets/video/ablation/exp_1.mp4",
"assets/video/ablation/exp_2.mp4"
]
]
}
},
{
"template": "video-comparision",
"props": {
"title": "",
"subtitle": "Pose Control",
"items": [
[
"assets/video/ablation/pose_1.mp4",
"assets/video/ablation/pose_2.mp4"
]
]
}
},
Expand Down
Binary file added assets/lip_1-BrSa_VrG.mp4
Binary file not shown.
Binary file added assets/lip_2-BY6IxAVj.mp4
Binary file not shown.
1 change: 1 addition & 0 deletions assets/main-Br63O_c6.css

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion assets/main-CMCgD1yo.css

This file was deleted.

Binary file added assets/pose_1--mPzg3KS.mp4
Binary file not shown.
Binary file added assets/pose_2-DCnEEeiv.mp4
Binary file not shown.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Homepage</title>
<script type="module" crossorigin src="/hallo/assets/index-BcoKkNzn.js"></script>
<link rel="stylesheet" crossorigin href="/hallo/assets/index-CX54T6Nv.css">
<script type="module" crossorigin src="/hallo/assets/index-CwpnKgod.js"></script>
<link rel="stylesheet" crossorigin href="/hallo/assets/index-BQ1bjaxG.css">
</head>

<body>
Expand Down

0 comments on commit 8d78f36

Please sign in to comment.