mirror of
https://github.com/shivammehta25/Matcha-TTS.git
synced 2026-02-05 10:19:19 +08:00
Initial commit
This commit is contained in:
28
configs/logger/aim.yaml
Normal file
28
configs/logger/aim.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
# https://aimstack.io/
|
||||
|
||||
# example usage in lightning module:
|
||||
# https://github.com/aimhubio/aim/blob/main/examples/pytorch_lightning_track.py
|
||||
|
||||
# open the Aim UI with the following command (run in the folder containing the `.aim` folder):
|
||||
# `aim up`
|
||||
|
||||
aim:
|
||||
_target_: aim.pytorch_lightning.AimLogger
|
||||
repo: ${paths.root_dir} # .aim folder will be created here
|
||||
# repo: "aim://ip_address:port" # can instead provide IP address pointing to Aim remote tracking server which manages the repo, see https://aimstack.readthedocs.io/en/latest/using/remote_tracking.html#
|
||||
|
||||
# aim allows to group runs under experiment name
|
||||
experiment: null # any string, set to "default" if not specified
|
||||
|
||||
train_metric_prefix: "train/"
|
||||
val_metric_prefix: "val/"
|
||||
test_metric_prefix: "test/"
|
||||
|
||||
# sets the tracking interval in seconds for system usage metrics (CPU, GPU, memory, etc.)
|
||||
system_tracking_interval: 10 # set to null to disable system metrics tracking
|
||||
|
||||
# enable/disable logging of system params such as installed packages, git info, env vars, etc.
|
||||
log_system_params: true
|
||||
|
||||
# enable/disable tracking console logs (default value is true)
|
||||
capture_terminal_logs: false # set to false to avoid infinite console log loop issue https://github.com/aimhubio/aim/issues/2550
|
||||
12
configs/logger/comet.yaml
Normal file
12
configs/logger/comet.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
# https://www.comet.ml
|
||||
|
||||
comet:
|
||||
_target_: lightning.pytorch.loggers.comet.CometLogger
|
||||
api_key: ${oc.env:COMET_API_TOKEN} # api key is loaded from environment variable
|
||||
save_dir: "${paths.output_dir}"
|
||||
project_name: "lightning-hydra-template"
|
||||
rest_api_key: null
|
||||
# experiment_name: ""
|
||||
experiment_key: null # set to resume experiment
|
||||
offline: False
|
||||
prefix: ""
|
||||
7
configs/logger/csv.yaml
Normal file
7
configs/logger/csv.yaml
Normal file
@@ -0,0 +1,7 @@
|
||||
# csv logger built in lightning
|
||||
|
||||
csv:
|
||||
_target_: lightning.pytorch.loggers.csv_logs.CSVLogger
|
||||
save_dir: "${paths.output_dir}"
|
||||
name: "csv/"
|
||||
prefix: ""
|
||||
9
configs/logger/many_loggers.yaml
Normal file
9
configs/logger/many_loggers.yaml
Normal file
@@ -0,0 +1,9 @@
|
||||
# train with many loggers at once
|
||||
|
||||
defaults:
|
||||
# - comet
|
||||
- csv
|
||||
# - mlflow
|
||||
# - neptune
|
||||
- tensorboard
|
||||
- wandb
|
||||
12
configs/logger/mlflow.yaml
Normal file
12
configs/logger/mlflow.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
# https://mlflow.org
|
||||
|
||||
mlflow:
|
||||
_target_: lightning.pytorch.loggers.mlflow.MLFlowLogger
|
||||
# experiment_name: ""
|
||||
# run_name: ""
|
||||
tracking_uri: ${paths.log_dir}/mlflow/mlruns # run `mlflow ui` command inside the `logs/mlflow/` dir to open the UI
|
||||
tags: null
|
||||
# save_dir: "./mlruns"
|
||||
prefix: ""
|
||||
artifact_location: null
|
||||
# run_id: ""
|
||||
9
configs/logger/neptune.yaml
Normal file
9
configs/logger/neptune.yaml
Normal file
@@ -0,0 +1,9 @@
|
||||
# https://neptune.ai
|
||||
|
||||
neptune:
|
||||
_target_: lightning.pytorch.loggers.neptune.NeptuneLogger
|
||||
api_key: ${oc.env:NEPTUNE_API_TOKEN} # api key is loaded from environment variable
|
||||
project: username/lightning-hydra-template
|
||||
# name: ""
|
||||
log_model_checkpoints: True
|
||||
prefix: ""
|
||||
10
configs/logger/tensorboard.yaml
Normal file
10
configs/logger/tensorboard.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
# https://www.tensorflow.org/tensorboard/
|
||||
|
||||
tensorboard:
|
||||
_target_: lightning.pytorch.loggers.tensorboard.TensorBoardLogger
|
||||
save_dir: "${paths.output_dir}/tensorboard/"
|
||||
name: null
|
||||
log_graph: False
|
||||
default_hp_metric: True
|
||||
prefix: ""
|
||||
# version: ""
|
||||
16
configs/logger/wandb.yaml
Normal file
16
configs/logger/wandb.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
# https://wandb.ai
|
||||
|
||||
wandb:
|
||||
_target_: lightning.pytorch.loggers.wandb.WandbLogger
|
||||
# name: "" # name of the run (normally generated by wandb)
|
||||
save_dir: "${paths.output_dir}"
|
||||
offline: False
|
||||
id: null # pass correct id to resume experiment!
|
||||
anonymous: null # enable anonymous logging
|
||||
project: "lightning-hydra-template"
|
||||
log_model: False # upload lightning ckpts
|
||||
prefix: "" # a string to put at the beginning of metric keys
|
||||
# entity: "" # set to name of your wandb team
|
||||
group: ""
|
||||
tags: []
|
||||
job_type: ""
|
||||
Reference in New Issue
Block a user