Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove monitor_log_file #9792

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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 @@ -199,8 +199,8 @@ function _train(){
training_pid=$! # 获取后台进程的 PID

# 监控进程和日志的更新状态
monitor_log_file "$log_file" "$training_pid" &
monitor_log_file_pid=$! # 获取日志监控进程的 PID
# monitor_log_file "$log_file" "$training_pid" &
# monitor_log_file_pid=$! # 获取日志监控进程的 PID

# 等待训练进程完成
wait $training_pid
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ function _train(){
training_pid=$! # 获取后台进程的 PID

# 监控进程和日志的更新状态
monitor_log_file "$log_file" "$training_pid" &
monitor_log_file_pid=$! # 获取日志监控进程的 PID
# monitor_log_file "$log_file" "$training_pid" &
# monitor_log_file_pid=$! # 获取日志监控进程的 PID

# 等待训练进程完成
wait $training_pid
Expand Down