liblinear icon indicating copy to clipboard operation
liblinear copied to clipboard

The output after training

Open JackieyWang opened this issue 5 years ago • 1 comments

Why is it that after the training, a lot of iteration information is output, but according to the example, only one should be output. When I execute train(x, y), a lot of information appears on the console, as follows:

.......*
optimization finished, #iter = 74
Objective value = -61.281319
nSV = 103
.......**
optimization finished, #iter = 73
Objective value = -54.324909
nSV = 91
..*
optimization finished, #iter = 26
Objective value = -2.698234
nSV = 15
.*
optimization finished, #iter = 12
Objective value = -2.446329
nSV = 11

JackieyWang avatar Aug 21 '20 03:08 JackieyWang

You can use -q to disable the output

On 2020-08-21 11:31, JackieyWang wrote:

Why is it that after the training, a lot of iteration information is output, but according to the example, only one should be output. When I execute train(x, y), a lot of information appears on the console, as follows: .......* optimization finished, #iter = 74 Objective value = -61.281319 nSV = 103 .......** optimization finished, #iter = 73 Objective value = -54.324909 nSV = 91 ..* optimization finished, #iter = 26 Objective value = -2.698234 nSV = 15 .* optimization finished, #iter = 12 Objective value = -2.446329 nSV = 11

-- You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub [1], or unsubscribe [2]. [ { "@context": "http://schema.org", "@type": "EmailMessage", "potentialAction": { "@type": "ViewAction", "target": "https://github.com/cjlin1/liblinear/issues/66", "url": "https://github.com/cjlin1/liblinear/issues/66", "name": "View Issue" }, "description": "View this Issue on GitHub", "publisher": { "@type": "Organization", "name": "GitHub", "url": "https://github.com" } } ]

Links:

[1] https://github.com/cjlin1/liblinear/issues/66 [2] https://github.com/notifications/unsubscribe-auth/ABI3BHWHNIQVGJCKJ4ZOKN3SBXTC7ANCNFSM4QG243KQ

cjlin1 avatar Aug 21 '20 13:08 cjlin1