Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
yusuke-a-uchida committed Aug 8, 2017
1 parent 96b4651 commit ea80b36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion create_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@


def get_args():
parser = argparse.ArgumentParser(description="This script automatically blur input video.",
parser = argparse.ArgumentParser(description="This script cleans-up noisy labels "
"and creates database for training.",
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument("--output", "-o", type=str, required=True,
help="path to output database mat file")
Expand Down
3 changes: 2 additions & 1 deletion demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@


def get_args():
parser = argparse.ArgumentParser(description="This script trains the CNN model for age and gender estimation.",
parser = argparse.ArgumentParser(description="This script detects faces from web cam input, "
"and estimates age and gender for the detected faces.",
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument("--weight_file", type=str, default=None,
help="path to weight file (e.g. weights.18-4.06.hdf5)")
Expand Down

0 comments on commit ea80b36

Please sign in to comment.