├── .gitignore └── src ├── data_cleaner.rb ├── logistic_regression.rb └── matrix_functions.rb /.gitignore: -------------------------------------------------------------------------------- 1 | output/ 2 | experimental/ 3 | jars/ 4 | tmp/ 5 | .redcar/ 6 | *.swp 7 | *~ 8 | -------------------------------------------------------------------------------- /src/data_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsycho/ruby-machine-learning/HEAD/src/data_cleaner.rb -------------------------------------------------------------------------------- /src/logistic_regression.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsycho/ruby-machine-learning/HEAD/src/logistic_regression.rb -------------------------------------------------------------------------------- /src/matrix_functions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsycho/ruby-machine-learning/HEAD/src/matrix_functions.rb --------------------------------------------------------------------------------