Skip to content

Instantly share code, notes, and snippets.

@musaprg
Created April 5, 2017 06:44
Show Gist options
  • Save musaprg/b3ad8d9fbd2db950b26dafed8c2d6376 to your computer and use it in GitHub Desktop.
Save musaprg/b3ad8d9fbd2db950b26dafed8c2d6376 to your computer and use it in GitHub Desktop.
マルコフ連鎖のためのDBスキーム
create table corpus(
id integer primary key,
word1 text,
word2 text,
word3 text,
create_at,
updated_at
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment