libokj commited on
Commit
6d1c7b1
·
1 Parent(s): ac24546

Delete configs/logger

Browse files
configs/logger/comet.yaml DELETED
@@ -1,12 +0,0 @@
1
- # https://www.comet.ml
2
-
3
- comet:
4
- _target_: lightning.pytorch.loggers.comet.CometLogger
5
- api_key: ${oc.env:COMET_API_TOKEN} # api key is loaded from environment variable
6
- save_dir: "${paths.output_dir}"
7
- project_name: "deepscreen"
8
- rest_api_key: null
9
- # experiment_name: ""
10
- experiment_key: null # set to resume experiment
11
- offline: False
12
- prefix: ""
 
 
 
 
 
 
 
 
 
 
 
 
 
configs/logger/csv.yaml DELETED
@@ -1,8 +0,0 @@
1
- # csv logger built in lightning
2
-
3
- csv:
4
- _target_: lightning.pytorch.loggers.csv_logs.CSVLogger
5
- save_dir: "${paths.output_dir}"
6
- name: "csv/"
7
- prefix: ""
8
- version: ""
 
 
 
 
 
 
 
 
 
configs/logger/default.yaml DELETED
@@ -1,5 +0,0 @@
1
- defaults:
2
- - csv
3
- # - mlflow
4
- # - wandb
5
- # - comet
 
 
 
 
 
 
configs/logger/mlflow.yaml DELETED
@@ -1,12 +0,0 @@
1
- # https://mlflow.org
2
-
3
- mlflow:
4
- _target_: lightning.pytorch.loggers.mlflow.MLFlowLogger
5
- # experiment_name: ""
6
- # run_name: ""
7
- tracking_uri: "file://${paths.output_dir}/mlflow/" # run `mlflow ui` command inside the `logs/mlflow/` dir to open the UI
8
- tags: ${tags}
9
- # save_dir: "./mlruns"
10
- prefix: ""
11
- artifact_location: null
12
- # run_id: ""
 
 
 
 
 
 
 
 
 
 
 
 
 
configs/logger/multiple_loggers.yaml DELETED
@@ -1,6 +0,0 @@
1
- # train with multiple loggers at once
2
- defaults:
3
- - csv
4
- - tensorboard
5
- # - mlflow
6
- # - wandb
 
 
 
 
 
 
 
configs/logger/neptune.yaml DELETED
@@ -1,9 +0,0 @@
1
- # https://neptune.ai
2
-
3
- neptune:
4
- _target_: lightning.pytorch.loggers.neptune.NeptuneLogger
5
- api_key: ${oc.env:NEPTUNE_API_TOKEN} # api key is loaded from environment variable
6
- project: username/deepscreen
7
- # name: ""
8
- log_model_checkpoints: True
9
- prefix: ""
 
 
 
 
 
 
 
 
 
 
configs/logger/tensorboard.yaml DELETED
@@ -1,10 +0,0 @@
1
- # https://www.tensorflow.org/tensorboard/
2
-
3
- tensorboard:
4
- _target_: lightning.pytorch.loggers.tensorboard.TensorBoardLogger
5
- save_dir: "${paths.output_dir}/tensorboard/"
6
- name: null
7
- log_graph: False
8
- default_hp_metric: True
9
- prefix: ""
10
- version: ""
 
 
 
 
 
 
 
 
 
 
 
configs/logger/wandb.yaml DELETED
@@ -1,16 +0,0 @@
1
- # https://wandb.ai
2
-
3
- wandb:
4
- _target_: lightning.pytorch.loggers.wandb.WandbLogger
5
- # name: "" # name of the run (normally generated by wandb)
6
- save_dir: "${paths.output_dir}"
7
- offline: True
8
- id: null # pass correct id to resume experiment!
9
- anonymous: null # enable anonymous logging
10
- project: "deepscreen"
11
- log_model: False # upload lightning ckpts
12
- prefix: "" # a string to put at the beginning of metric keys
13
- # entity: "" # set to name of your wandb team
14
- group: ""
15
- tags: ${tags}
16
- job_type: ""