You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.
set hivevar:total_steps=32561;
set hivevar:mini_batch_size=10;
createtablea9a_model1asselect
cast(feature asint) as feature,
avg(weight) as weight
from
(select
logress(addBias(features),label,"-total_steps ${total_steps} -mini_batch ${mini_batch_size}") as (feature,weight)
from
a9atrain
) t
group by feature;
Evaluation
selectcount(1) / ${num_test_instances} from a9a_submit1
where actual == predicted;