https://github.com/katerynazakharova/machine-learning
Example of a ML algorithm.
https://github.com/katerynazakharova/machine-learning
gradient-boosting-classifier gridsearchcv machine-learning ml numpy pandas python3
Last synced: about 2 months ago
JSON representation
Example of a ML algorithm.
- Host: GitHub
- URL: https://github.com/katerynazakharova/machine-learning
- Owner: KaterynaZakharova
- Created: 2020-12-27T11:42:35.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-27T21:08:16.000Z (over 5 years ago)
- Last Synced: 2025-03-26T17:50:27.675Z (about 1 year ago)
- Topics: gradient-boosting-classifier, gridsearchcv, machine-learning, ml, numpy, pandas, python3
- Language: Python
- Homepage:
- Size: 15.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Machine Learning Example
Example of a ML algorithm.
In the example is used GradientBoostingClassifier and GridSearchCV.
## Task Description
Train and test data contain the information about paid and unpaid fines.
The task is to predict whether a fine will be paid on time.
More detailed information about data is in the folder **"datasets"**.
The output is:
| ticket_id | result |
|-----------|-----------|
284932 | 0.205176
285362 | 0.094864
285361 | 0.228263
285338 | 0.205176
285346 | 0.228263
... | ...
376496 | 0.094864
376497 | 0.094864
376499 | 0.228263
376500 | 0.228263
369851 | 0.486462
Name: compliance, Length: 61001, dtype: float32