Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```markdown
|
2 |
+
# ToonCrafter-fp16
|
3 |
+
|
4 |
+
## Overview
|
5 |
+
This repository contains the `fp16` version of the ToonCrafter model, optimized for half-precision computations. The model is hosted on Hugging Face and can be accessed via the following links:
|
6 |
+
|
7 |
+
- **Original Repository (Aitrepreneur/ToonCrafter-fp16):** [https://huggingface.co/Aitrepreneur/ToonCrafter-fp16](https://huggingface.co/Aitrepreneur/ToonCrafter-fp16)
|
8 |
+
- **Alternative Repository (svjack/ToonCrafter-fp16):** [https://huggingface.co/svjack/ToonCrafter-fp16](https://huggingface.co/svjack/ToonCrafter-fp16)
|
9 |
+
|
10 |
+
## Installation
|
11 |
+
|
12 |
+
### Clone the Repository
|
13 |
+
To clone the repository and set up the environment, follow these steps:
|
14 |
+
|
15 |
+
```bash
|
16 |
+
git clone https://huggingface.co/svjack/ToonCrafter-fp16 && cd ToonCrafter-fp16
|
17 |
+
```
|
18 |
+
|
19 |
+
### Install Dependencies
|
20 |
+
After cloning the repository, install the required dependencies using `pip`:
|
21 |
+
|
22 |
+
```bash
|
23 |
+
pip install -r requirements.txt
|
24 |
+
```
|
25 |
+
|
26 |
+
Additionally, ensure that `einops` is up-to-date:
|
27 |
+
|
28 |
+
```bash
|
29 |
+
pip install --upgrade einops
|
30 |
+
```
|
31 |
+
|
32 |
+
## Usage
|
33 |
+
Once the repository is cloned and dependencies are installed, you can proceed to use the `ToonCrafter-fp16` model for your tasks.
|
34 |
+
|
35 |
+
## Contributing
|
36 |
+
If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request.
|
37 |
+
|
38 |
+
## License
|
39 |
+
This project is licensed under the terms specified in the repository. Please refer to the LICENSE file for more details.
|
40 |
+
```
|