phyloforfun commited on
Commit
c900297
·
1 Parent(s): 0343b9d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -1
README.md CHANGED
@@ -19,4 +19,50 @@ configs:
19
  - split: train
20
  path: data/train-*
21
  license: cc-by-sa-4.0
22
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  - split: train
20
  path: data/train-*
21
  license: cc-by-sa-4.0
22
+ ---
23
+ SLTPvA
24
+
25
+ Dataset:
26
+ - Alpaca format
27
+ - All MICH Angiospermae entries as of 28-11-2023 (v1-0)
28
+
29
+ Synthetic OCR:
30
+ - C25 25% of cells will be randomly ALL CAPS
31
+ - L25 25% of cells will be randomly all lowercase
32
+ - E25 25% of all rows will be subjected to synthetic OCR augmentation
33
+ - R05 5% chance that a given character in an OCR augmentation row will undergo substitution, deletion, insertion errors
34
+ - Synthetic OCR augmentation rows also have random strings inserted sporadically to simulate OCR noise
35
+
36
+ System message:
37
+ Refactor the unstructured text into a valid JSON dictionary. The key names follow the Darwin Core Archive Standard. If a key lacks content, then insert an empty string. Fill in the following JSON structure as required: {\"catalogNumber\": \"\", \"order\": \"\", \"family\": \"\", \"scientificName\": \"\", \"scientificNameAuthorship\": \"\", \"genus\": \"\", \"subgenus\": \"\", \"specificEpithet\": \"\", \"verbatimTaxonRank\": \"\", \"infraspecificEpithet\": \"\", \"identifiedBy\": \"\", \"recordedBy\": \"\", \"recordNumber\": \"\", \"verbatimEventDate\": \"\", \"habitat\": \"\", \"occurrenceRemarks\": \"\", \"associatedTaxa\": \"\", \"country\": \"\", \"stateProvince\": \"\", \"county\": \"\", \"municipality\": \"\", \"locality\": \"\", \"decimalLatitude\": \"\", \"decimalLongitude\": \"\", \"verbatimCoordinates\": \"\", \"minimumElevationInMeters\": \"\", \"maximumElevationInMeters\": \"\"}
38
+
39
+ JSON format:
40
+ {
41
+ "catalogNumber": "",
42
+ "order": "",
43
+ "family": "",
44
+ "scientificName": "",
45
+ "scientificNameAuthorship": "",
46
+ "genus": "",
47
+ "subgenus": "",
48
+ "specificEpithet": "",
49
+ "verbatimTaxonRank": "",
50
+ "infraspecificEpithet": "",
51
+ "identifiedBy": "",
52
+ "recordedBy": "",
53
+ "recordNumber": "",
54
+ "verbatimEventDate": "",
55
+ "habitat": "",
56
+ "occurrenceRemarks": "",
57
+ "associatedTaxa": "",
58
+ "country": "",
59
+ "stateProvince": "",
60
+ "county": "",
61
+ "municipality": "",
62
+ "locality": "",
63
+ "decimalLatitude": "",
64
+ "decimalLongitude": "",
65
+ "verbatimCoordinates": "",
66
+ "minimumElevationInMeters": "",
67
+ "maximumElevationInMeters": ""
68
+ }