Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
vision
Commits
80cfc2c8
"examples/git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "782527d48195606e1045bdfa9e143e8793e29c9d"
Commit
80cfc2c8
authored
Aug 29, 2019
by
Joaquín Alori
Committed by
Francisco Massa
Aug 29, 2019
Browse files
Fix comment in default arguments (#1243)
parent
93bceaf2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
references/detection/train.py
references/detection/train.py
+1
-1
No files found.
references/detection/train.py
View file @
80cfc2c8
...
@@ -148,7 +148,7 @@ if __name__ == "__main__":
...
@@ -148,7 +148,7 @@ if __name__ == "__main__":
parser
.
add_argument
(
'--epochs'
,
default
=
13
,
type
=
int
,
metavar
=
'N'
,
parser
.
add_argument
(
'--epochs'
,
default
=
13
,
type
=
int
,
metavar
=
'N'
,
help
=
'number of total epochs to run'
)
help
=
'number of total epochs to run'
)
parser
.
add_argument
(
'-j'
,
'--workers'
,
default
=
4
,
type
=
int
,
metavar
=
'N'
,
parser
.
add_argument
(
'-j'
,
'--workers'
,
default
=
4
,
type
=
int
,
metavar
=
'N'
,
help
=
'number of data loading workers (default:
16
)'
)
help
=
'number of data loading workers (default:
4
)'
)
parser
.
add_argument
(
'--lr'
,
default
=
0.02
,
type
=
float
,
parser
.
add_argument
(
'--lr'
,
default
=
0.02
,
type
=
float
,
help
=
'initial learning rate, 0.02 is the default value for training '
help
=
'initial learning rate, 0.02 is the default value for training '
'on 8 gpus and 2 images_per_gpu'
)
'on 8 gpus and 2 images_per_gpu'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment