Skip to content

Commit

Permalink
Minor adjusments
Browse files Browse the repository at this point in the history
  • Loading branch information
renan-souza committed Dec 27, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent a710ad4 commit d89ec9a
Showing 2 changed files with 10 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests-py313.yml
Original file line number Diff line number Diff line change
@@ -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: |
14 changes: 7 additions & 7 deletions resources/sample_settings.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d89ec9a

Please sign in to comment.