Skip to content

pattern-recognition-mcs/PatRec19_KWS_Data

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Keyword Spotting Data

##Task ## Your task is to develop a machine learning approach for spotting keywords in the provided documents. You can test your approach on the provided training and validation dataset where you find a list of keywords that you can find for certain at least once in each set.

Data

In this repository you'll find all the data necessary for your KeywordSpotting Task.

You find the following folders:

ground-truth

Contains ground-truth data.

transcription.txt

Contains the transcription of all words (on a character level) of the whole dataset. The Format is as follows:

- XXX-YY-ZZ: XXX = Document Number, YY = Line Number, ZZ = Word Number
- Contains the character-wise transcription of the word (letters seperated with dashes)
- Special characters denoted with s_
	- numbers (s_x)
	- punctuation (s_pt, s_cm, ...)
	- strong s (s_s)
	- hyphen (s_mi)
	- semicolon (s_sq)
	- apostrophe (s_qt)
	- colon (s_qo)

locations

Contains bounding boxes for all words in the svg-format.

- XXX.svg: File containing the bounding boxes for the given documents
- **id** contains the same XXX-YY-ZZ naming as above

images

Contains the original images in jpg-format.

task

Contains three files:

####train.txt / valid.txt #### Contains a splitting of the documents into a training and a validation set.

keywords.txt

Contains a list of keywords of which each will be at least once in the training and validation dataset.

About

Data for the Keyword Spotting Task

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 99.5%
  • Python 0.5%