Spaces:
Running
on
A100
Running
on
A100
Update README.md with new app title and formatting adjustments
Browse files
README.md
CHANGED
@@ -1,28 +1,29 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji: 🚀
|
4 |
-
colorFrom: blue
|
5 |
-
colorTo: purple
|
6 |
-
sdk: gradio
|
7 |
-
sdk_version: "4.44.1"
|
8 |
-
app_file: app.py
|
9 |
-
pinned: false
|
10 |
---
|
11 |
|
12 |
<div align="center">
|
13 |
|
14 |
# Xora️
|
|
|
15 |
</div>
|
16 |
|
17 |
This is the official repository for Xora.
|
18 |
|
19 |
## Table of Contents
|
20 |
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
|
27 |
## Introduction
|
28 |
|
@@ -31,8 +32,8 @@ The performance of Diffusion Transformers is heavily influenced by the number of
|
|
31 |
## Installation
|
32 |
|
33 |
# Setup
|
34 |
-
The codebase currently uses Python 3.10.5, CUDA version 12.2, and supports PyTorch >= 2.1.2.
|
35 |
|
|
|
36 |
|
37 |
```bash
|
38 |
git clone https://github.com/LightricksResearch/xora-core.git
|
@@ -44,7 +45,7 @@ source env/bin/activate
|
|
44 |
python -m pip install -e .\[inference-script\]
|
45 |
```
|
46 |
|
47 |
-
Then, download the model from [Hugging Face](https://huggingface.co/Lightricks/Xora)
|
48 |
|
49 |
```python
|
50 |
from huggingface_hub import snapshot_download
|
@@ -75,7 +76,7 @@ python inference.py --ckpt_dir 'PATH' --prompt "PROMPT" --input_image_path IMAGE
|
|
75 |
## Acknowledgement
|
76 |
|
77 |
We are grateful for the following awesome projects when implementing Xora:
|
78 |
-
* [DiT](https://github.com/facebookresearch/DiT) and [PixArt-alpha](https://github.com/PixArt-alpha/PixArt-alpha): vision transformers for image generation.
|
79 |
|
|
|
80 |
|
81 |
-
[//]: #
|
|
|
1 |
---
|
2 |
+
title: LTX-Video-Playground # Replace with your app's title
|
3 |
+
emoji: 🚀 # Choose an emoji to represent your app
|
4 |
+
colorFrom: blue # Choose a color to start the gradient (e.g., blue, red, green)
|
5 |
+
colorTo: purple # Choose a color to end the gradient
|
6 |
+
sdk: gradio # Specify the SDK, e.g., gradio or streamlit
|
7 |
+
sdk_version: "4.44.1" # Specify the SDK version if needed
|
8 |
+
app_file: app.py # Name of your main app file
|
9 |
+
pinned: false # Set to true if you want to pin this Space
|
10 |
---
|
11 |
|
12 |
<div align="center">
|
13 |
|
14 |
# Xora️
|
15 |
+
|
16 |
</div>
|
17 |
|
18 |
This is the official repository for Xora.
|
19 |
|
20 |
## Table of Contents
|
21 |
|
22 |
+
- [Introduction](#introduction)
|
23 |
+
- [Installation](#installation)
|
24 |
+
- [Inference](#inference)
|
25 |
+
- [Inference Code](#inference-code)
|
26 |
+
- [Acknowledgement](#acknowledgement)
|
27 |
|
28 |
## Introduction
|
29 |
|
|
|
32 |
## Installation
|
33 |
|
34 |
# Setup
|
|
|
35 |
|
36 |
+
The codebase currently uses Python 3.10.5, CUDA version 12.2, and supports PyTorch >= 2.1.2.
|
37 |
|
38 |
```bash
|
39 |
git clone https://github.com/LightricksResearch/xora-core.git
|
|
|
45 |
python -m pip install -e .\[inference-script\]
|
46 |
```
|
47 |
|
48 |
+
Then, download the model from [Hugging Face](https://huggingface.co/Lightricks/Xora)
|
49 |
|
50 |
```python
|
51 |
from huggingface_hub import snapshot_download
|
|
|
76 |
## Acknowledgement
|
77 |
|
78 |
We are grateful for the following awesome projects when implementing Xora:
|
|
|
79 |
|
80 |
+
- [DiT](https://github.com/facebookresearch/DiT) and [PixArt-alpha](https://github.com/PixArt-alpha/PixArt-alpha): vision transformers for image generation.
|
81 |
|
82 |
+
[//]: # "## Citation"
|