Skip to content

Commit 03e2a7f

Browse files
Merge pull request cumulo-autumn#26 from teftef6220/main
Fix Readme
2 parents 483a696 + a9030ee commit 03e2a7f

File tree

7 files changed

+6
-8
lines changed

7 files changed

+6
-8
lines changed

README-ja.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ pip install pywin32
139139
#### 開発者向け
140140

141141
```bash
142-
git clone https://github.com/cumulo-autumn/StreamDiffusion.git
143142
python setup.py develop easy_install streamdiffusion[tensorrt]
144143
python -m streamdiffusion.tools.install-tensorrt
145144
```

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ pip install pywin32
140140
#### For Developer
141141

142142
```bash
143-
git clone https://github.com/cumulo-autumn/StreamDiffusion.git
144143
python setup.py develop easy_install streamdiffusion[tensorrt]
145144
python -m streamdiffusion.tools.install-tensorrt
146145
```

demo/realtime-txt2img/README-ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ StreamDiffusion を用いた GUI を提供します。
1717
pip install -r requirements.txt
1818
cd view
1919
npm i
20-
npm start &
20+
npm run build
2121
cd ../server
2222
python main.py
2323
```

demo/realtime-txt2img/server/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Config:
1717
# Server
1818
####################################################################
1919
# In most cases, you should leave this as it is.
20-
host: str = "0.0.0.0"
20+
host: str = "127.0.0.1"
2121
port: int = 9090
2222
workers: int = 1
2323

examples/README-ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Hugging Face のモデル id を指定することで実行時に Hugging Face
141141

142142
### Negative Prompt
143143

144-
```negative_prompt``` 引数で Negative Prompt を文字列で指定する。<br>
144+
```--negative_prompt``` 引数で Negative Prompt を文字列で指定する。<br>
145145
※※ ただし、txt2img ,optimal-performance, vid2vid では使用できない。
146146

147147

examples/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ Usage : ```--prompt "A cat with a hat"```
144144

145145
### Negative Prompt
146146

147-
```negative_prompt``` allows you to change Negative Prompt. <br>
148-
※※ ```negative_prompt``` Not available in txt2img ,optimal-performance, and vid2vid.
147+
```--negative_prompt``` allows you to change Negative Prompt. <br>
148+
※※ ```--negative_prompt``` Not available in txt2img ,optimal-performance, and vid2vid.
149149

150150

151151
Usage : ```--negative_prompt "Bad quality"```

utils/wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def _load_model(
349349
lora_dict: Optional[Dict[str, float]] = None,
350350
lcm_lora_id: Optional[str] = None,
351351
vae_id: Optional[str] = None,
352-
acceleration: Literal["none", "sfast", "tensorrt"] = "tensorrt",
352+
acceleration: Literal["none", "xformers", "tensorrt"] = "tensorrt",
353353
warmup: int = 10,
354354
do_add_noise: bool = True,
355355
use_lcm_lora: bool = True,

0 commit comments

Comments
 (0)