Parses data in the LibSVM Format.

Options

Example

PQL

input = ACCESS({source='SVM', wrapper='GenericPush',
transport='File',protocol='SVM',
  dataHandler='Tuple',options=[['delimiter',' '],['textDelimiter',"'"],['readfirstline','true'],['delay','100']],
  schema=[
    ['symbol','String'],
    ['points','Double'] ]
})

CQL

CREATE STREAM svm (symbol String, points Double)   
    WRAPPER 'GenericPush'
    PROTOCOL 'SVM'
    TRANSPORT 'File'
    DATAHANDLER 'Tuple'
    OPTIONS ( delimiter' ' ', 'textDelimiter' "'", 'readfirstline' 'true', 'delay' '100')