MD-ELM
Detection of originally mislabelled samples in a dataset, with Optimally Pruned Extreme Learning Machine (OP-ELM).
The MDELM function is the core of MD-ELM method, which returns 'likelihood of being a mislabel' score for each sample.
Additional methods are given for running the whole methodology. They generate multiple models, store them in files,
process the models and combine results. Here is an example code to use them:
X,Y = cPickle.load(open("data.pkl","rb"))
mfiles = build_models(X,Y, X.shape[0]/10, k=4, path="./try")
# run all experiments
for data in mfiles:
for elm in data:
run_model(elm)
scores = np.zeros((X.shape[0],))
for data in mfiles:
found = analyze_models(data)
scores[found] += 1
print scores
print "done"
Model files from path="./try" folder can be processed independently with run_model() function on different machines.
Detection of originally mislabelled samples in a dataset, with Optimally Pruned Extreme Learning Machine (OP-ELM).
The MDELM function is the core of MD-ELM method, which returns 'likelihood of being a mislabel' score for each sample.
Additional methods are given for running the whole methodology. They generate multiple models, store them in files,
process the models and combine results. Here is an example code to use them:
X,Y = cPickle.load(open("data.pkl","rb"))
mfiles = build_models(X,Y, X.shape[0]/10, k=4, path="./try")
# run all experiments
for data in mfiles:
for elm in data:
run_model(elm)
scores = np.zeros((X.shape[0],))
for data in mfiles:
found = analyze_models(data)
scores[found] += 1
print scores
print "done"
Model files from path="./try" folder can be processed independently with run_model() function on different machines.
Release files for MD-ELM 0.61
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| MD-ELM-0.61.tar.gz | 9.6 kB | Details |
Release files / MD-ELM-0.61.tar.gz
| Download URL | MD-ELM-0.61.tar.gz |
|---|---|
| Size | 9.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c1fe040c3f850e4a6b715256548a23df52e617e3020c831f803e1fe4fa95d9f6
|
|
BLAKE2b-256 checksum How to use checksums |
17058e6f000d65fd81e83a55284e005ca6b227f1aa52872da5f457f113a6bb56
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |