forked from nerfies/nerfies.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (76 loc) · 2.17 KB
/
index.html
File metadata and controls
83 lines (76 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Physics-Informed DDPM</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #222;
}
a {
color: #007acc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
video {
max-width: 100%;
height: auto;
display: block;
margin: 20px 0;
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Physics-Informed DDPM</h1>
<h2>Authors</h2>
<p>Grzegorz Gruszczyński, Jakub Jerzy Meixner, Michał Jan Włodarczyk, Przemysław Musialski</p>
<h2>Abstract</h2>
<p>
Physics Informed Diffusion Models
</p>
<h2>Video Demonstration - Corruption Process</h2>
<video controls>
<source src="assets/corruption_init.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<h2>Images</h2>
<img src="images/nerfies_image1.jpg" alt="Example rendering from Nerfies">
<h2>Code and Data</h2>
<ul>
<li><a href="https://github.com/example/nerfies">Code Repository</a></li>
<li><a href="https://example.com/dataset">Dataset</a></li>
</ul>
<h2>Links</h2>
<ul>
<li><a href="https://nerfies.example.com">Project Page</a></li>
<li><a href="https://example.com/paper">Paper</a></li>
</ul>
</div>
</body>
</html>