Browse Source

'README.md' ändern

Dimitri Korsch 6 năm trước cách đây
mục cha
commit
d53aa79c49
1 tập tin đã thay đổi với 9 bổ sung1 xóa
  1. 9 1
      README.md

+ 9 - 1
README.md

@@ -56,7 +56,10 @@ python script.py path/to/data path/to/labels path/to/model \
 
 ## Main Features
 
-### ArgFactory
+### Argument Factory
+* pre-defined frequently used arguments
+* each factory method return the factory itself, hence one can chain the factory calls
+* some factory methods support default value definition
 
 ```python
 from cvargparse import GPUParser, ArgFactory, Arg
@@ -78,6 +81,11 @@ args = parser.parse_args()
 ```
 
 ### Argument Choices
+* case insensitive
+* deafult choice definition
+* automatic argument generation
+* pythonic way of argument-to-value access
+
 ```python
 import logging
 from cvargparse.utils import BaseChoiceType