Ignore:
Timestamp:
2019-05-02T14:51:03+12:00 (5 years ago)
Author:
cpb16
Message:

Streamlined numpages checking and random selection. Corrected COMPX-RUN-X.sh to download all files (naming error). NEXT: Clean up corpus generation and move on to the next phase

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/is-sheet-music-encore/trunk/java-gen-corpus/TabProcTextGen.java

    r33031 r33044  
    4747                    item[19].equals(inputType) &&
    4848                    (item[24].equals("open")||item[24].equals("page"))){
     49                        //Encode id
     50                        String idEncoded = item[0];
     51                        //idEncoded = idEncoded.replaceAll(":", "+").replaceAll("/", "=");
    4952                        //Write item to file
    50                         fw.write(item[0] + "\n");
     53                        fw.write(idEncoded + "\n");
    5154                    }
    5255                }       
     
    6366//https://www.javatpoint.com/java-filewriter-class
    6467//https://docs.oracle.com/javase/8/docs/api/index.html?java/io/FileWriter.html
     68//Email from supervisor (Compx520 ID Error Apr 24)
Note: See TracChangeset for help on using the changeset viewer.