Closed gpengzhi closed 4 years ago
I don't think this change is necessary. All Texar-TF examples use tf.flags
and use underlines instead of hyphen. Let's keep this unchanged/consistent to avoid confusion... Indeed the inconsistency between the conventions of Texar-TF's flags (using underline) and Texar-PyTorch (using hyphen) has caused confusion for some of the users
Merging #256 into master will not change coverage. The diff coverage is
n/a
.
@@ Coverage Diff @@
## master #256 +/- ##
=======================================
Coverage 80.56% 80.56%
=======================================
Files 188 188
Lines 13121 13121
=======================================
Hits 10571 10571
Misses 2550 2550
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 44e335e...ea45297. Read the comment docs.
tf.flags
cannot handle options containing a hyphen in the middle. Useargparse
instead.