AP123 commited on
Commit
9cee56a
·
1 Parent(s): b4ec18d

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +25 -17
index.html CHANGED
@@ -1,19 +1,27 @@
1
  <!DOCTYPE html>
2
  <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
1
  <!DOCTYPE html>
2
  <html>
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width" />
6
+ <title>DreamGaussian Project</title>
7
+ <link rel="stylesheet" href="style.css" />
8
+ </head>
9
+ <body>
10
+ <div class="card">
11
+ <h1>DreamGaussian</h1>
12
+ <p>This repository contains the official implementation for <a href="https://arxiv.org/abs/XXXX.XXXX">DreamGaussian: Generative Gaussian Splatting for Efficient 3D Content Creation</a>.</p>
13
+ <p><a href="https://dreamgaussian.github.io">Project Page</a> | <a href="https://arxiv.org/abs/XXXX.XXXX">Arxiv</a></p>
14
+ <img src="https://github.com/dreamgaussian/dreamgaussian/assets/25863658/db860801-7b9c-4b30-9eb9-87330175f5c8" alt="DreamGaussian Project Image">
15
+
16
+ <h2>Install</h2>
17
+ <pre><code>
18
+ pip install -r requirements.txt
19
+ git clone --recursive https://github.com/ashawkey/diff-gaussian-rasterization
20
+ pip install ./diff-gaussian-rasterization
21
+ pip install ./simple-knn
22
+ pip install git+https://github.com/NVlabs/nvdiffrast/
23
+ pip install git+https://github.com/ashawkey/kiuikit
24
+ </code></pre>
25
+ </div>
26
+ </body>
27
+ </html>