hsinyuan-huang / FusionNet-NLI

An example for applying FusionNet to Natural Language Inference
135 stars 39 forks source link

[BUG] in train.py #8

Open SoluMilken opened 6 years ago

SoluMilken commented 6 years ago

https://github.com/momohuang/FusionNet-NLI/blob/master/train.py#L107

if args.on_philly == False:
    fh = logging.FileHandler(args.log_file) 
    fh.setLevel(logging.DEBUG)
    fh.setFormatter(formatter)
    log.addHandler(fh)

Can I ignore this part? This is because the attribute on_philly is not in args.

hsinyuan-huang commented 6 years ago

Hi @SoluMilken,

Yes, you can ignore this part. I will remove it in the latest commit.

Thanks, Robert