https://github.com/omarithawi/ila
Inductive Learning Algorithm
https://github.com/omarithawi/ila
Last synced: 2 months ago
JSON representation
Inductive Learning Algorithm
- Host: GitHub
- URL: https://github.com/omarithawi/ila
- Owner: OmarIthawi
- Created: 2013-10-13T23:17:55.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-03-27T15:28:11.000Z (over 8 years ago)
- Last Synced: 2025-04-26T07:04:43.236Z (3 months ago)
- Language: Python
- Homepage:
- Size: 130 KB
- Stars: 4
- Watchers: 4
- 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' .