forked from moreo/QuaPy
doing tests with quantification stumps
This commit is contained in:
parent
06d36a132d
commit
1ae45f8b9f
|
@ -28,7 +28,8 @@ Possible extensions:
|
||||||
- better investigate the "iterative" nature of the method.
|
- better investigate the "iterative" nature of the method.
|
||||||
- better investigate the implications with other learners. E.g., using EMQ as a prompt, or using EMQ in the second
|
- better investigate the implications with other learners. E.g., using EMQ as a prompt, or using EMQ in the second
|
||||||
stage (test).
|
stage (test).
|
||||||
- test with SVM
|
- test with SVM (not working well... and problematic due to the fact that svms need to be calibrated)
|
||||||
|
- test in multiclass scenarios
|
||||||
"""
|
"""
|
||||||
|
|
||||||
class ClassWeightPCC(BaseQuantifier):
|
class ClassWeightPCC(BaseQuantifier):
|
||||||
|
|
|
@ -42,7 +42,7 @@ def quantification_models():
|
||||||
# yield 'pcc.opt', PCC(newLR()), lr_params
|
# yield 'pcc.opt', PCC(newLR()), lr_params
|
||||||
# yield 'pacc.opt', PACC(newLR()), lr_params
|
# yield 'pacc.opt', PACC(newLR()), lr_params
|
||||||
# yield 'wpacc.opt', ClassWeightPCC(), lr_params
|
# yield 'wpacc.opt', ClassWeightPCC(), lr_params
|
||||||
yield 'ds', QuantificationStumpRegressor(SAMPLE_SIZE), None
|
yield 'ds', QuantificationStumpRegressor(SAMPLE_SIZE, 21, 10), None
|
||||||
# yield 'ds.opt', QuantificationStumpRegressor(SAMPLE_SIZE), {'C': __C_range}
|
# yield 'ds.opt', QuantificationStumpRegressor(SAMPLE_SIZE), {'C': __C_range}
|
||||||
# yield 'MAX', MAX(newLR()), lr_params
|
# yield 'MAX', MAX(newLR()), lr_params
|
||||||
# yield 'MS', MS(newLR()), lr_params
|
# yield 'MS', MS(newLR()), lr_params
|
||||||
|
@ -130,8 +130,8 @@ def run(experiment):
|
||||||
model,
|
model,
|
||||||
test=data.test,
|
test=data.test,
|
||||||
sample_size=SAMPLE_SIZE,
|
sample_size=SAMPLE_SIZE,
|
||||||
n_prevpoints=21,
|
n_prevpoints=21, # 21
|
||||||
n_repetitions=1,
|
n_repetitions=10, # 100
|
||||||
n_jobs=-1 if isinstance(model, qp.method.meta.Ensemble) else 1,
|
n_jobs=-1 if isinstance(model, qp.method.meta.Ensemble) else 1,
|
||||||
verbose=True
|
verbose=True
|
||||||
)
|
)
|
|
@ -5,7 +5,7 @@ import sys, os
|
||||||
import pickle
|
import pickle
|
||||||
import argparse
|
import argparse
|
||||||
from common import *
|
from common import *
|
||||||
from tc_experiments import *
|
from reviews_experiments import *
|
||||||
from tabular import Table
|
from tabular import Table
|
||||||
import itertools
|
import itertools
|
||||||
|
|
Loading…
Reference in New Issue