├── README.md ├── report ├── Gene2vec.ipynb └── res │ ├── ADN_animation.gif │ ├── DNA_exons_introns.png │ ├── F2.large.jpg │ ├── ValinenotatpH7.4.png │ ├── amino_acids_hydrophobic.jpg │ ├── bighorn_vs_wheat.png │ ├── disordered_protein.png │ ├── disprot.png │ ├── nce-nplm.png │ ├── nplm.png │ ├── protein_6-grams.bin │ ├── skipgram.png │ ├── softmax-nplm.png │ └── text8.bin └── src ├── gene-cluster.sh ├── gene-word.sh ├── n-grams.py ├── sample_output.txt ├── simple_stats.py └── word2vec ├── .svn ├── all-wcprops └── entries ├── LICENSE ├── README.txt ├── compute-accuracy.c ├── demo-analogy.sh ├── demo-classes.sh ├── demo-phrase-accuracy.sh ├── demo-phrases.sh ├── demo-train-big-model-v1.sh ├── demo-word-accuracy.sh ├── demo-word.sh ├── distance.c ├── makefile ├── questions-phrases.txt ├── questions-words.txt ├── word-analogy.c ├── word2phrase.c └── word2vec.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/README.md -------------------------------------------------------------------------------- /report/Gene2vec.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/Gene2vec.ipynb -------------------------------------------------------------------------------- /report/res/ADN_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/ADN_animation.gif -------------------------------------------------------------------------------- /report/res/DNA_exons_introns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/DNA_exons_introns.png -------------------------------------------------------------------------------- /report/res/F2.large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/F2.large.jpg -------------------------------------------------------------------------------- /report/res/ValinenotatpH7.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/ValinenotatpH7.4.png -------------------------------------------------------------------------------- /report/res/amino_acids_hydrophobic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/amino_acids_hydrophobic.jpg -------------------------------------------------------------------------------- /report/res/bighorn_vs_wheat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/bighorn_vs_wheat.png -------------------------------------------------------------------------------- /report/res/disordered_protein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/disordered_protein.png -------------------------------------------------------------------------------- /report/res/disprot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/disprot.png -------------------------------------------------------------------------------- /report/res/nce-nplm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/nce-nplm.png -------------------------------------------------------------------------------- /report/res/nplm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/nplm.png -------------------------------------------------------------------------------- /report/res/protein_6-grams.bin: -------------------------------------------------------------------------------- 1 | /home/david/protein_6-grams.bin -------------------------------------------------------------------------------- /report/res/skipgram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/skipgram.png -------------------------------------------------------------------------------- /report/res/softmax-nplm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/softmax-nplm.png -------------------------------------------------------------------------------- /report/res/text8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/report/res/text8.bin -------------------------------------------------------------------------------- /src/gene-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/gene-cluster.sh -------------------------------------------------------------------------------- /src/gene-word.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/gene-word.sh -------------------------------------------------------------------------------- /src/n-grams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/n-grams.py -------------------------------------------------------------------------------- /src/sample_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/sample_output.txt -------------------------------------------------------------------------------- /src/simple_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/simple_stats.py -------------------------------------------------------------------------------- /src/word2vec/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/.svn/all-wcprops -------------------------------------------------------------------------------- /src/word2vec/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/.svn/entries -------------------------------------------------------------------------------- /src/word2vec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/LICENSE -------------------------------------------------------------------------------- /src/word2vec/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/README.txt -------------------------------------------------------------------------------- /src/word2vec/compute-accuracy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/compute-accuracy.c -------------------------------------------------------------------------------- /src/word2vec/demo-analogy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/demo-analogy.sh -------------------------------------------------------------------------------- /src/word2vec/demo-classes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/demo-classes.sh -------------------------------------------------------------------------------- /src/word2vec/demo-phrase-accuracy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/demo-phrase-accuracy.sh -------------------------------------------------------------------------------- /src/word2vec/demo-phrases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/demo-phrases.sh -------------------------------------------------------------------------------- /src/word2vec/demo-train-big-model-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/demo-train-big-model-v1.sh -------------------------------------------------------------------------------- /src/word2vec/demo-word-accuracy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/demo-word-accuracy.sh -------------------------------------------------------------------------------- /src/word2vec/demo-word.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/demo-word.sh -------------------------------------------------------------------------------- /src/word2vec/distance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/distance.c -------------------------------------------------------------------------------- /src/word2vec/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/makefile -------------------------------------------------------------------------------- /src/word2vec/questions-phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/questions-phrases.txt -------------------------------------------------------------------------------- /src/word2vec/questions-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/questions-words.txt -------------------------------------------------------------------------------- /src/word2vec/word-analogy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/word-analogy.c -------------------------------------------------------------------------------- /src/word2vec/word2phrase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/word2phrase.c -------------------------------------------------------------------------------- /src/word2vec/word2vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-r-cox/Gene2vec/HEAD/src/word2vec/word2vec.c --------------------------------------------------------------------------------