Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/omarithawi/ila
Inductive Learning Algorithm
https://github.com/omarithawi/ila
Last synced: 2 days ago
JSON representation
Inductive Learning Algorithm
- Host: GitHub
- URL: https://github.com/omarithawi/ila
- Owner: OmarIthawi
- Created: 2013-10-13T23:17:55.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2017-03-27T15:28:11.000Z (over 7 years ago)
- Last Synced: 2023-09-02T23:51:49.488Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 130 KB
- Stars: 4
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
README
Inductive Learning Program
File Structure:
readme.txt
ila.py
ila-trained.db
test.csvSteps:
1)use SQlite to open ila-trained.db
2)run 'python ila.py' to check the hypothesis(rules)Code Review:
ila.py imports training dataset from csv file. It uses SQLite database and sqlite3 module in python to malipulate tables and implement the ILA algorithm. It returns weather inductive result matches the class in testing dataset.If it matches it returns 'Correct' else it returns 'Incorrect' .