Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yu9824/ensemble_outlier_sample_detection
A method for removing outlier samples.
https://github.com/yu9824/ensemble_outlier_sample_detection
Last synced: 10 days ago
JSON representation
A method for removing outlier samples.
- Host: GitHub
- URL: https://github.com/yu9824/ensemble_outlier_sample_detection
- Owner: yu9824
- License: apache-2.0
- Created: 2021-01-10T21:24:37.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-15T07:29:57.000Z (over 3 years ago)
- Last Synced: 2024-08-09T03:15:55.430Z (3 months ago)
- Language: Python
- Homepage: https://pypi.org/project/ensemble-outlier-sample-detection/0.1.0/
- Size: 5.66 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ensemble Outlier Sample Detection
![python_badge](https://img.shields.io/pypi/pyversions/ensemble-outlier-sample-detection)
![license_badge](https://img.shields.io/pypi/l/ensemble-outlier-sample-detection)
![Total_Downloads_badge](https://pepy.tech/badge/ensemble-outlier-sample-detection)A method for removing outlier samples.
## How to use.
You can see more details in the [example](https://github.com/yu9824/ensemble_outlier_sample_detection/tree/main/example).
```python
from ensemble_outlier_sample_detection import EnsembleOutlierSampleDetectorelo = EnsembleOutlierSampleDetector(random_state = 334, n_jobs = -1)
elo.fit(X, y)
elo.outlier_support_ # boolean(np.ndarray)
```## Reference
### Paper
* https://www.sciencedirect.com/science/article/abs/pii/S0169743917305919?via%3Dihub### Sites
* https://github.com/hkaneko1985/ensemble_outlier_sample_detection
* https://datachemeng.com/outlier_samples_detectionc_python/## LICENSE
Copyright © 2021 yu9824Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.