I'm a little bit confused with how vw input data is constructed; I want to have a numerical value in a vw namespace(without using FeatureName
in FeatureName:Float
, is it possible?), for example a line from my train.txt
(file containing samples in vw format) in vw input format is something like this:
1 |n 4.25522 |c good fair |s male
Now I'm asking that does vw see the value inside the namespace n
as a feature name and interpret it as something like '4.25522':0.0
('4.25522'
i is the name of the feature and 0.0
is its value)? or it's used as a float value as it's being seen(a floating value number with 5 digits after the dot)?