├── .gitignore ├── GA_BestFitnesses.pkl ├── Genetic Algorithm for credit scoring.ipynb ├── README.md ├── chromosomes.pkl ├── data ├── GermanCreditInput.xls ├── GermanCreditOutputClass1columnknn.xls └── australian dataset.xlsx └── to_do_list.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /.ipynb_checkpoints 2 | /*.py 3 | /essays -------------------------------------------------------------------------------- /GA_BestFitnesses.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanMhi/Genetic-algorithms-for-credit-scoring/HEAD/GA_BestFitnesses.pkl -------------------------------------------------------------------------------- /Genetic Algorithm for credit scoring.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanMhi/Genetic-algorithms-for-credit-scoring/HEAD/Genetic Algorithm for credit scoring.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanMhi/Genetic-algorithms-for-credit-scoring/HEAD/README.md -------------------------------------------------------------------------------- /chromosomes.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanMhi/Genetic-algorithms-for-credit-scoring/HEAD/chromosomes.pkl -------------------------------------------------------------------------------- /data/GermanCreditInput.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanMhi/Genetic-algorithms-for-credit-scoring/HEAD/data/GermanCreditInput.xls -------------------------------------------------------------------------------- /data/GermanCreditOutputClass1columnknn.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanMhi/Genetic-algorithms-for-credit-scoring/HEAD/data/GermanCreditOutputClass1columnknn.xls -------------------------------------------------------------------------------- /data/australian dataset.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanMhi/Genetic-algorithms-for-credit-scoring/HEAD/data/australian dataset.xlsx -------------------------------------------------------------------------------- /to_do_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanMhi/Genetic-algorithms-for-credit-scoring/HEAD/to_do_list.txt --------------------------------------------------------------------------------