├── .gitignore ├── .hgignore ├── LOGS.NOBACKUP └── .keep ├── README ├── batch ├── diagnostics.py ├── hyperparameters.py ├── hyperparameters.random-indexing.yaml ├── induce.py └── vocabulary.py /.gitignore: -------------------------------------------------------------------------------- 1 | .hgignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | *.pyc 3 | *.sw? 4 | LOGS.NOBACKUP/run* 5 | -------------------------------------------------------------------------------- /LOGS.NOBACKUP/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/random-indexing-wordrepresentations/HEAD/README -------------------------------------------------------------------------------- /batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/random-indexing-wordrepresentations/HEAD/batch -------------------------------------------------------------------------------- /diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/random-indexing-wordrepresentations/HEAD/diagnostics.py -------------------------------------------------------------------------------- /hyperparameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/random-indexing-wordrepresentations/HEAD/hyperparameters.py -------------------------------------------------------------------------------- /hyperparameters.random-indexing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/random-indexing-wordrepresentations/HEAD/hyperparameters.random-indexing.yaml -------------------------------------------------------------------------------- /induce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/random-indexing-wordrepresentations/HEAD/induce.py -------------------------------------------------------------------------------- /vocabulary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/random-indexing-wordrepresentations/HEAD/vocabulary.py --------------------------------------------------------------------------------