Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export DF_BASE_URL=<your_base_url> # 可选

- **基本用法**
```bash
python dataflow/statics/api_pipelines/image_editing_api_pipeline.py \
python dataflow/statics/pipelines/api_pipelines/image_editing_api_pipeline.py \
--first_entry_file_name <your_input_data_file_path>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ self.serving = LocalImageGenServing(

### 第四步:运行流水线
```bash
python dataflow/statics/gpu_pipelines/image_editing_pipeline.py
python dataflow/statics/pipelines/gpu_pipelines/image_editing_pipeline.py \
--first_entry_file_name <your_input_text_file_path>
```

生成的文件会默认保存在 `./cache_local/image_edit_local` 文件夹内。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export DF_BASE_URL=<your_base_url> # 可选

- **基本用法**
```bash
python dataflow/statics/api_pipelines/text_to_image_generation_api_pipeline.py \
python dataflow/statics/pipelines/api_pipelines/text_to_image_generation_api_pipeline.py \
--first_entry_file_name <your_input_text_file_path>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ self.serving = LocalImageGenServing(
### 第四步:运行流水线

```bash
python dataflow/statics/gpu_pipelines/text_to_image_generation_pipeline.py
python dataflow/statics/pipelines/gpu_pipelines/text_to_image_generation_pipeline.py \
--first_entry_file_name <your_input_text_file_path>
```

生成的文件会默认保存在 `./cache_local/text2image_local` 文件夹内。
Expand Down