experimental statistical language classification system

This commit is contained in:
Kyle Drake 2015-12-28 14:32:43 -06:00
parent 9cc85a48bb
commit 242cc6e92d
15 changed files with 178 additions and 37 deletions

View file

@ -0,0 +1,9 @@
Sequel.migration do
up {
DB.add_column :site_files, :classifier, :text, default: nil, index: true
}
down {
DB.drop_column :site_files, :classifier
}
end