diff --git a/.github/workflows/run-tests-py313.yml b/.github/workflows/run-tests-py313.yml index 2ac2cb65..a11cf321 100644 --- a/.github/workflows/run-tests-py313.yml +++ b/.github/workflows/run-tests-py313.yml @@ -33,7 +33,9 @@ jobs: run: make services-mongo - name: Upgrade pip - run: python -m pip install --upgrade pip + run: | + python -m pip install --upgrade pip + python --version - name: Install dependencies that work on py3.13 run: | diff --git a/resources/sample_settings.yaml b/resources/sample_settings.yaml index 06a2e03d..33e5fa38 100644 --- a/resources/sample_settings.yaml +++ b/resources/sample_settings.yaml @@ -5,12 +5,12 @@ project: performance_logging: false register_workflow: true enrich_messages: true - db_flush_mode: online # or offline + db_flush_mode: offline # or offline log: log_path: "default" - log_file_level: error # use 'disable' to disable logs - log_stream_level: error + log_file_level: disable # use 'disable' to disable logs + log_stream_level: disable telemetry_capture: gpu: ~ # ~ means None. This is a list that should specify which metrics of the GPU that should be monitored @@ -26,12 +26,12 @@ instrumentation: enabled: true torch: what: parent_and_children # parent_only, parent_and_children, ~ - children_mode: lightweight # lightweight, tensor_inspection, telemetry, telemetry_and_tensor_inspection - save_models: True + children_mode: telemetry_and_tensor_inspection # lightweight, tensor_inspection, telemetry, telemetry_and_tensor_inspection + capture_at_every: 1 #epochs; please use a value that is multiple of #epochs + # enable to set between train, evaluate, and test experiment: user: root - campaign_id: super_campaign mq: type: redis # or kafka; Please adjust the port (kafka's default is 9092; redis is 6379) @@ -41,7 +41,7 @@ mq: channel: interception buffer_size: 50 insertion_buffer_time_secs: 5 - chunk_size: 10 # use can use 0 or -1 to disable this. Or simply omit this from the config file. + chunk_size: -1 # use 0 or -1 to disable this. Or simply omit this from the config file. kv_db: host: localhost