Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
combo
Manage
Activity
Members
Labels
Plan
Issues
20
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Syntactic Tools
combo
Commits
a106d5f0
Commit
a106d5f0
authored
1 year ago
by
Martyna Wiącek
Browse files
Options
Downloads
Patches
Plain Diff
added separate validation batches per epoch
parent
aff8d3c7
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!49
Multiword fix transformer encoder
,
!47
Fixed multiword prediction + bug that made the code write empty predictions
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
combo/main.py
+4
-2
4 additions, 2 deletions
combo/main.py
with
4 additions
and
2 deletions
combo/main.py
+
4
−
2
View file @
a106d5f0
...
...
@@ -63,6 +63,8 @@ flags.DEFINE_integer(name="batch_size", default=256,
help
=
"
Batch size
"
)
flags
.
DEFINE_integer
(
name
=
"
batches_per_epoch
"
,
default
=
16
,
help
=
"
Number of batches per epoch
"
)
flags
.
DEFINE_integer
(
name
=
"
validation_batches_per_epoch
"
,
default
=
4
,
help
=
"
Number of batches per epoch
"
)
flags
.
DEFINE_string
(
name
=
"
pretrained_transformer_name
"
,
default
=
"
bert-base-cased
"
,
help
=
"
Pretrained transformer model name (see transformers from HuggingFace library for list of
"
"
available models) for transformers based embeddings.
"
)
...
...
@@ -171,7 +173,7 @@ def get_defaults(dataset_reader: Optional[DatasetReader],
str
(
training_data_loader
.
data_path
),
prefix
=
prefix
)
if
FLAGS
.
validation_data_path
and
not
validation_data_loader
:
validation_data_loader
=
default_data_loader
(
dataset_reader
,
validation_data_path
,
FLAGS
.
batch_size
,
FLAGS
.
batches_per_epoch
)
validation_data_loader
=
default_data_loader
(
dataset_reader
,
validation_data_path
,
FLAGS
.
batch_size
,
FLAGS
.
validation_
batches_per_epoch
)
elif
FLAGS
.
validation_data_path
and
validation_data_loader
:
if
validation_data_path
:
validation_data_loader
.
data_path
=
validation_data_path
...
...
@@ -514,7 +516,7 @@ def _get_ext_vars(finetuning: bool = False) -> Dict:
"
parameters
"
:
{
"
data_path
"
:
FLAGS
.
validation_data_path
if
not
finetuning
else
FLAGS
.
finetuning_validation_data_path
,
"
batch_size
"
:
FLAGS
.
batch_size
,
"
batches_per_epoch
"
:
FLAGS
.
batches_per_epoch
,
"
batches_per_epoch
"
:
FLAGS
.
validation_
batches_per_epoch
,
"
reader
"
:
{
"
parameters
"
:
{
"
features
"
:
FLAGS
.
features
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment