Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
renzhc
diffusers_dcu
Commits
159885ad
Unverified
Commit
159885ad
authored
Feb 09, 2024
by
Sayak Paul
Committed by
GitHub
Feb 08, 2024
Browse files
correct hub_token exposition behaviour (thanks to @bghira). (#6918)
parent
7337eea5
Changes
43
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
123 additions
and
0 deletions
+123
-0
examples/advanced_diffusion_training/train_dreambooth_lora_sd15_advanced.py
...diffusion_training/train_dreambooth_lora_sd15_advanced.py
+6
-0
examples/advanced_diffusion_training/train_dreambooth_lora_sdxl_advanced.py
...diffusion_training/train_dreambooth_lora_sdxl_advanced.py
+6
-0
examples/consistency_distillation/train_lcm_distill_lora_sd_wds.py
...consistency_distillation/train_lcm_distill_lora_sd_wds.py
+6
-0
examples/consistency_distillation/train_lcm_distill_lora_sdxl.py
...s/consistency_distillation/train_lcm_distill_lora_sdxl.py
+6
-0
examples/consistency_distillation/train_lcm_distill_lora_sdxl_wds.py
...nsistency_distillation/train_lcm_distill_lora_sdxl_wds.py
+6
-0
examples/consistency_distillation/train_lcm_distill_sd_wds.py
...ples/consistency_distillation/train_lcm_distill_sd_wds.py
+6
-0
examples/consistency_distillation/train_lcm_distill_sdxl_wds.py
...es/consistency_distillation/train_lcm_distill_sdxl_wds.py
+6
-0
examples/controlnet/train_controlnet.py
examples/controlnet/train_controlnet.py
+6
-0
examples/controlnet/train_controlnet_flax.py
examples/controlnet/train_controlnet_flax.py
+6
-0
examples/controlnet/train_controlnet_sdxl.py
examples/controlnet/train_controlnet_sdxl.py
+6
-0
examples/custom_diffusion/train_custom_diffusion.py
examples/custom_diffusion/train_custom_diffusion.py
+6
-0
examples/dreambooth/train_dreambooth.py
examples/dreambooth/train_dreambooth.py
+6
-0
examples/dreambooth/train_dreambooth_lora.py
examples/dreambooth/train_dreambooth_lora.py
+6
-0
examples/dreambooth/train_dreambooth_lora_sdxl.py
examples/dreambooth/train_dreambooth_lora_sdxl.py
+6
-0
examples/instruct_pix2pix/train_instruct_pix2pix.py
examples/instruct_pix2pix/train_instruct_pix2pix.py
+5
-0
examples/instruct_pix2pix/train_instruct_pix2pix_sdxl.py
examples/instruct_pix2pix/train_instruct_pix2pix_sdxl.py
+6
-0
examples/kandinsky2_2/text_to_image/train_text_to_image_decoder.py
...kandinsky2_2/text_to_image/train_text_to_image_decoder.py
+7
-0
examples/kandinsky2_2/text_to_image/train_text_to_image_lora_decoder.py
...nsky2_2/text_to_image/train_text_to_image_lora_decoder.py
+7
-0
examples/kandinsky2_2/text_to_image/train_text_to_image_lora_prior.py
...dinsky2_2/text_to_image/train_text_to_image_lora_prior.py
+7
-0
examples/kandinsky2_2/text_to_image/train_text_to_image_prior.py
...s/kandinsky2_2/text_to_image/train_text_to_image_prior.py
+7
-0
No files found.
examples/advanced_diffusion_training/train_dreambooth_lora_sd15_advanced.py
View file @
159885ad
...
@@ -1016,6 +1016,12 @@ def encode_prompt(text_encoders, tokenizers, prompt, text_input_ids_list=None):
...
@@ -1016,6 +1016,12 @@ def encode_prompt(text_encoders, tokenizers, prompt, text_input_ids_list=None):
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/advanced_diffusion_training/train_dreambooth_lora_sdxl_advanced.py
View file @
159885ad
...
@@ -1078,6 +1078,12 @@ def encode_prompt(text_encoders, tokenizers, prompt, text_input_ids_list=None):
...
@@ -1078,6 +1078,12 @@ def encode_prompt(text_encoders, tokenizers, prompt, text_input_ids_list=None):
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/consistency_distillation/train_lcm_distill_lora_sd_wds.py
View file @
159885ad
...
@@ -869,6 +869,12 @@ def encode_prompt(prompt_batch, text_encoder, tokenizer, proportion_empty_prompt
...
@@ -869,6 +869,12 @@ def encode_prompt(prompt_batch, text_encoder, tokenizer, proportion_empty_prompt
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/consistency_distillation/train_lcm_distill_lora_sdxl.py
View file @
159885ad
...
@@ -700,6 +700,12 @@ def encode_prompt(prompt_batch, text_encoders, tokenizers, is_train=True):
...
@@ -700,6 +700,12 @@ def encode_prompt(prompt_batch, text_encoders, tokenizers, is_train=True):
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/consistency_distillation/train_lcm_distill_lora_sdxl_wds.py
View file @
159885ad
...
@@ -864,6 +864,12 @@ def encode_prompt(prompt_batch, text_encoders, tokenizers, proportion_empty_prom
...
@@ -864,6 +864,12 @@ def encode_prompt(prompt_batch, text_encoders, tokenizers, proportion_empty_prom
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/consistency_distillation/train_lcm_distill_sd_wds.py
View file @
159885ad
...
@@ -833,6 +833,12 @@ def encode_prompt(prompt_batch, text_encoder, tokenizer, proportion_empty_prompt
...
@@ -833,6 +833,12 @@ def encode_prompt(prompt_batch, text_encoder, tokenizer, proportion_empty_prompt
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/consistency_distillation/train_lcm_distill_sdxl_wds.py
View file @
159885ad
...
@@ -873,6 +873,12 @@ def encode_prompt(prompt_batch, text_encoders, tokenizers, proportion_empty_prom
...
@@ -873,6 +873,12 @@ def encode_prompt(prompt_batch, text_encoders, tokenizers, proportion_empty_prom
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/controlnet/train_controlnet.py
View file @
159885ad
...
@@ -716,6 +716,12 @@ def collate_fn(examples):
...
@@ -716,6 +716,12 @@ def collate_fn(examples):
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/controlnet/train_controlnet_flax.py
View file @
159885ad
...
@@ -661,6 +661,12 @@ def get_params_to_save(params):
...
@@ -661,6 +661,12 @@ def get_params_to_save(params):
def
main
():
def
main
():
args
=
parse_args
()
args
=
parse_args
()
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging
.
basicConfig
(
logging
.
basicConfig
(
format
=
"%(asctime)s - %(levelname)s - %(name)s - %(message)s"
,
format
=
"%(asctime)s - %(levelname)s - %(name)s - %(message)s"
,
datefmt
=
"%m/%d/%Y %H:%M:%S"
,
datefmt
=
"%m/%d/%Y %H:%M:%S"
,
...
...
examples/controlnet/train_controlnet_sdxl.py
View file @
159885ad
...
@@ -762,6 +762,12 @@ def collate_fn(examples):
...
@@ -762,6 +762,12 @@ def collate_fn(examples):
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/custom_diffusion/train_custom_diffusion.py
View file @
159885ad
...
@@ -652,6 +652,12 @@ def parse_args(input_args=None):
...
@@ -652,6 +652,12 @@ def parse_args(input_args=None):
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/dreambooth/train_dreambooth.py
View file @
159885ad
...
@@ -804,6 +804,12 @@ def encode_prompt(text_encoder, input_ids, attention_mask, text_encoder_use_atte
...
@@ -804,6 +804,12 @@ def encode_prompt(text_encoder, input_ids, attention_mask, text_encoder_use_atte
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/dreambooth/train_dreambooth_lora.py
View file @
159885ad
...
@@ -664,6 +664,12 @@ def encode_prompt(text_encoder, input_ids, attention_mask, text_encoder_use_atte
...
@@ -664,6 +664,12 @@ def encode_prompt(text_encoder, input_ids, attention_mask, text_encoder_use_atte
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/dreambooth/train_dreambooth_lora_sdxl.py
View file @
159885ad
...
@@ -841,6 +841,12 @@ def encode_prompt(text_encoders, tokenizers, prompt, text_input_ids_list=None):
...
@@ -841,6 +841,12 @@ def encode_prompt(text_encoders, tokenizers, prompt, text_input_ids_list=None):
def
main
(
args
):
def
main
(
args
):
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
)
...
...
examples/instruct_pix2pix/train_instruct_pix2pix.py
View file @
159885ad
...
@@ -380,6 +380,11 @@ def download_image(url):
...
@@ -380,6 +380,11 @@ def download_image(url):
def
main
():
def
main
():
args
=
parse_args
()
args
=
parse_args
()
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
if
args
.
non_ema_revision
is
not
None
:
if
args
.
non_ema_revision
is
not
None
:
deprecate
(
deprecate
(
...
...
examples/instruct_pix2pix/train_instruct_pix2pix_sdxl.py
View file @
159885ad
...
@@ -481,6 +481,12 @@ def convert_to_np(image, resolution):
...
@@ -481,6 +481,12 @@ def convert_to_np(image, resolution):
def
main
():
def
main
():
args
=
parse_args
()
args
=
parse_args
()
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
if
args
.
non_ema_revision
is
not
None
:
if
args
.
non_ema_revision
is
not
None
:
deprecate
(
deprecate
(
"non_ema_revision!=None"
,
"non_ema_revision!=None"
,
...
...
examples/kandinsky2_2/text_to_image/train_text_to_image_decoder.py
View file @
159885ad
...
@@ -439,6 +439,13 @@ def parse_args():
...
@@ -439,6 +439,13 @@ def parse_args():
def
main
():
def
main
():
args
=
parse_args
()
args
=
parse_args
()
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
os
.
path
.
join
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
os
.
path
.
join
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
accelerator_project_config
=
ProjectConfiguration
(
total_limit
=
args
.
checkpoints_total_limit
,
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
total_limit
=
args
.
checkpoints_total_limit
,
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
...
...
examples/kandinsky2_2/text_to_image/train_text_to_image_lora_decoder.py
View file @
159885ad
...
@@ -325,6 +325,13 @@ def parse_args():
...
@@ -325,6 +325,13 @@ def parse_args():
def
main
():
def
main
():
args
=
parse_args
()
args
=
parse_args
()
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
accelerator_project_config
=
ProjectConfiguration
(
total_limit
=
args
.
checkpoints_total_limit
,
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
total_limit
=
args
.
checkpoints_total_limit
,
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
...
...
examples/kandinsky2_2/text_to_image/train_text_to_image_lora_prior.py
View file @
159885ad
...
@@ -337,6 +337,13 @@ DATASET_NAME_MAPPING = {
...
@@ -337,6 +337,13 @@ DATASET_NAME_MAPPING = {
def
main
():
def
main
():
args
=
parse_args
()
args
=
parse_args
()
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
Path
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
accelerator_project_config
=
ProjectConfiguration
(
...
...
examples/kandinsky2_2/text_to_image/train_text_to_image_prior.py
View file @
159885ad
...
@@ -440,6 +440,13 @@ def parse_args():
...
@@ -440,6 +440,13 @@ def parse_args():
def
main
():
def
main
():
args
=
parse_args
()
args
=
parse_args
()
if
args
.
report_to
==
"wandb"
and
args
.
hub_token
is
not
None
:
raise
ValueError
(
"You cannot use both --report_to=wandb and --hub_token due to a security risk of exposing your token."
" Please use `huggingface-cli login` to authenticate with the Hub."
)
logging_dir
=
os
.
path
.
join
(
args
.
output_dir
,
args
.
logging_dir
)
logging_dir
=
os
.
path
.
join
(
args
.
output_dir
,
args
.
logging_dir
)
accelerator_project_config
=
ProjectConfiguration
(
accelerator_project_config
=
ProjectConfiguration
(
total_limit
=
args
.
checkpoints_total_limit
,
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
total_limit
=
args
.
checkpoints_total_limit
,
project_dir
=
args
.
output_dir
,
logging_dir
=
logging_dir
...
...
Prev
1
2
3
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment