-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fix-version-conflicts' of github.com:adrianoesch/newsre…
…clib into fix-version-conflicts
- Loading branch information
Showing
6 changed files
with
66 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
configs/experiment/nrms_mindlarge_pretrainedemb_celoss_bertsent.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# @package _global_ | ||
|
||
# to execute this experiment run: | ||
# python train.py experiment=example | ||
|
||
defaults: | ||
- override /data: mind_rec_bert_sent.yaml | ||
- override /model: nrms.yaml | ||
- override /callbacks: default.yaml | ||
- override /logger: many_loggers.yaml | ||
- override /trainer: gpu.yaml | ||
|
||
# all parameters below will be merged with parameters from default configurations set above | ||
# this allows you to overwrite only specified parameters | ||
|
||
tags: ["nrms", "mindlarge", "pretrainedemb", "celoss", "bertsent"] | ||
|
||
seed: 42 | ||
|
||
data: | ||
dataset_size: "large" | ||
|
||
model: | ||
use_plm: False | ||
pretrained_embeddings_path: ${paths.data_dir}MINDlarge_train/transformed_word_embeddings.npy | ||
embed_dim: 300 | ||
num_heads: 15 | ||
query_dim: 200 | ||
dropout_probability: 0.2 | ||
|
||
callbacks: | ||
early_stopping: | ||
patience: 5 | ||
|
||
trainer: | ||
max_epochs: 20 | ||
|
||
logger: | ||
wandb: | ||
name: "nrms_mindlarge_pretrainedemb_celoss_bertsent_s42" | ||
tags: ${tags} | ||
group: "mind" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters