Spaces:
Sleeping
Sleeping
| #!/usr/bin/python3 | |
| # -*- coding: utf-8 -*- | |
| from project_settings import project_path | |
| log_directory = project_path / "server/train_model_server/logs" | |
| log_directory.mkdir(parents=True, exist_ok=True) | |
| port = 9527 | |
| if __name__ == "__main__": | |
| pass | |