Skip to content

Commit

Permalink
Merge pull request BVLC#5514 from cypof/fix_parse_log
Browse files Browse the repository at this point in the history
Fix log parsing
  • Loading branch information
shelhamer authored Apr 14, 2017
2 parents 861a12d + 51728d1 commit 1836b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/extra/parse_log.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ rm aux.txt aux0.txt aux1.txt aux2.txt aux3.txt aux4.txt
grep '] Solving ' $1 > aux.txt
grep ', loss = ' $1 >> aux.txt
grep 'Iteration ' aux.txt | sed 's/.*Iteration \([[:digit:]]*\).*/\1/g' > aux0.txt
grep ', loss = ' $1 | awk '{print $9}' > aux1.txt
grep ', loss = ' $1 | awk -F = '{print $2}' > aux1.txt
grep ', lr = ' $1 | awk '{print $9}' > aux2.txt

# Extracting elapsed seconds
Expand Down

0 comments on commit 1836b1b

Please sign in to comment.