cosmicman commited on
Commit
fa4b160
1 Parent(s): e88adcc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -1
README.md CHANGED
@@ -12,9 +12,20 @@ CosmicMan is a text-to-image foundation model specialized for generating high-fi
12
  conda create -n cosmicman python=3.10
13
  source activate cosmicman
14
  pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
15
- pip install accelerate diffusers datasets transformers botocore invisible-watermark bitsandbytes gradio
16
  ```
17
 
 
 
 
 
 
 
 
 
 
 
 
18
  ## Inference
19
 
20
  ```python
 
12
  conda create -n cosmicman python=3.10
13
  source activate cosmicman
14
  pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
15
+ pip install accelerate diffusers datasets transformers botocore invisible-watermark bitsandbytes gradio==3.48.0
16
  ```
17
 
18
+
19
+ ### Quick start with [Gradio](https://www.gradio.app/guides/quickstart)
20
+
21
+ To get started, first install the required dependencies, then run:
22
+
23
+ ```
24
+ python demo_sdxl.py
25
+ ```
26
+ Let's have a look at a simple example using the `http://your-server-ip:port`.
27
+
28
+
29
  ## Inference
30
 
31
  ```python