Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tensorflow-federated
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
tensorflow-federated
Commits
025b2cba
Commit
025b2cba
authored
4 years ago
by
Zachary Charles
Committed by
Zachary Garrett
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix flag prefix issues in federated trainer due to abbreviation of "stackoverflow".
PiperOrigin-RevId: 332259391
parent
f99b51e4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tensorflow_federated/python/research/optimization/main/federated_trainer.py
+15
-8
15 additions, 8 deletions
...ed/python/research/optimization/main/federated_trainer.py
with
15 additions
and
8 deletions
tensorflow_federated/python/research/optimization/main/federated_trainer.py
+
15
−
8
View file @
025b2cba
...
...
@@ -148,6 +148,14 @@ TASK_FLAGS = collections.OrderedDict(
stackoverflow_nwp
=
so_nwp_flags
,
stackoverflow_lr
=
so_lr_flags
)
TASK_FLAG_PREFIXES
=
collections
.
OrderedDict
(
cifar100
=
'
cifar100
'
,
emnist_cr
=
'
emnist_cr
'
,
emnist_ae
=
'
emnist_ae
'
,
shakespeare
=
'
shakespeare
'
,
stackoverflow_nwp
=
'
so_nwp
'
,
stackoverflow_lr
=
'
so_lr
'
)
def
_get_hparam_flags
():
"""
Returns an ordered dictionary of pertinent hyperparameter flags.
"""
...
...
@@ -179,18 +187,17 @@ def _get_task_args():
An ordered dictionary of (arg_name, arg_value) pairs.
"""
task_name
=
FLAGS
.
task
task_args
=
collections
.
OrderedDict
()
if
task_name
in
TASK_FLAGS
:
task_flag_list
=
TASK_FLAGS
[
task_name
]
task_flag_dict
=
utils_impl
.
lookup_flag_values
(
task_flag_list
)
for
key
in
task_flag_dict
:
if
key
.
startswith
(
task_name
):
value
=
task_flag_dict
.
pop
(
key
)
key
=
key
[
len
(
task_name
):].
lstrip
(
'
_-
'
)
task_flag_dict
[
key
]
=
value
return
task_flag_dict
else
:
return
collections
.
OrderedDict
()
task_flag_prefix
=
TASK_FLAG_PREFIXES
[
task_name
]
for
(
key
,
value
)
in
task_flag_dict
.
items
():
if
key
.
startswith
(
task_flag_prefix
):
key
=
key
[
len
(
task_flag_prefix
):].
lstrip
(
'
_-
'
)
task_args
[
key
]
=
value
return
task_args
def
main
(
argv
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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