Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. cat results/*/*.json | grep -o -E 'args": "[^"]+' | grep -o -E '\-\-loss.*' >f1.txt
  2. cat results/*/*.json | grep -o -E 'args": "[^"]+' | grep -o -E '\-\-dataset[^\-]+' > f2.txt
  3. cat results/*/*.json | grep -o -E 'miou_test": \[\[[^"]+' | grep -o -E '29, [^]]+' > f3.txt
  4. paste f1.txt f2.txt f3.txt | sed -e 's/--loss/|/g' | sed -e 's/--batch_size/|/g' | sed -e 's/29,/|/g'| sed -e 's/--dataset/|/g' | sort
  5.  
  6. #
  7. # | ce | 1 | sbd | 0.7214421629905701
  8. # | ce | 1 | voc | 0.6946691870689392
  9. # | ce | 2 | sbd | 0.7422053217887878
  10. # | ce | 2 | voc | 0.7283321619033813
  11. # | ce | 4 | sbd | 0.7555468678474426
  12. # | ce | 4 | voc | 0.738434374332428
  13. # | lovasz | 1 | sbd | 0.44610077142715454
  14. # | lovasz | 1 | sbd | 0.4744608402252197
  15. # | lovasz | 2 | sbd | 0.6456656455993652
  16. # | lovasz | 2 | sbd | 0.6514649391174316
  17. # | lovasz | 2 | voc | 0.588422417640686
  18. # | lovasz | 4 | sbd | 0.6558359265327454
  19. # | lovasz | 4 | sbd | 0.6839529275894165
  20. # | lovasz | 4 | voc | 0.46898722648620605
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement