BoostedBuidlingProcessForADG
Project description
BoostedBuidlingProcessForADG
Implementation of A novel machine learning method for my researches in this field.
This method is only for binary classification tasks up until current version.
Quick Start
install
pip install bbp4adg
import and initialize:
# from exports import BBP, ADG
from bbp4adg import BBP, ADG
adg = BBP(threshold=delta)
start training
# Or adg = ADG(threshold=delta) for original adg
model, perf =adg.fit(X,y)
print('arguments count:', len(model.arguments))
print(model.arguments)
print('relations count:', len(model.relations))
print(model.relations)
print("accuracy:", perf)
evaluate on test set
print("test accuracy:", adg.score(X_test,y_test))
ToDos
- more comments
- doc tests
- more semantics than grounded
How to contribute
Issues and PRs are welcomed.
Please read the contributing document.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bbp4adg-0.1.0.tar.gz
(9.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
bbp4adg-0.1.0-py3-none-any.whl
(10.6 kB
view details)
File details
Details for the file bbp4adg-0.1.0.tar.gz.
File metadata
- Download URL: bbp4adg-0.1.0.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e09b1f434e2f648d3142e7194f0ec6b1eaa1bbabe0eb0275474fc10a2b215374
|
|
| MD5 |
8098b5700072440a2728219514625a43
|
|
| BLAKE2b-256 |
0b3822f2ff39e10482789e76b876b97da70373153a4cf867c23985935979d3a5
|
File details
Details for the file bbp4adg-0.1.0-py3-none-any.whl.
File metadata
- Download URL: bbp4adg-0.1.0-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38de6bcba5b5fcf944df0c89b7dd7dbc523bfcf6d93e4b8c3fca0c83cd752963
|
|
| MD5 |
c424afe5fda36b7c1d5e448a20d94fc1
|
|
| BLAKE2b-256 |
761234f218739548aa933d16430bf6a1fbebb3d601e2bdad8506a8154814dcf1
|