├── .gitattributes ├── LICENSE ├── README.md ├── comparison ├── web │ ├── cs.py │ ├── gde3.py │ ├── jaya.py │ ├── nsga2.py │ ├── pso.py │ └── tlbo.py ├── word2vec │ ├── cs.py │ ├── gde3.py │ ├── jaya.py │ ├── nsga2.py │ ├── pso.py │ └── tlbo.py └── wordnet │ ├── cs.py │ ├── gde3.py │ ├── jaya.py │ ├── nsga2.py │ ├── pso.py │ └── tlbo.py ├── example.png ├── oruga2_gde3.py ├── oruga2_nsga2.py ├── oruga3_gde3_wmd.py ├── oruga3_nsga2_wmd.py ├── oruga_massive_experiments.py ├── oruga_massive_experiments_smog.py ├── oruga_webscraping.py ├── oruga_word2vec.py ├── oruga_wordnet.py ├── requirements.txt └── texts.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/README.md -------------------------------------------------------------------------------- /comparison/web/cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/web/cs.py -------------------------------------------------------------------------------- /comparison/web/gde3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/web/gde3.py -------------------------------------------------------------------------------- /comparison/web/jaya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/web/jaya.py -------------------------------------------------------------------------------- /comparison/web/nsga2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/web/nsga2.py -------------------------------------------------------------------------------- /comparison/web/pso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/web/pso.py -------------------------------------------------------------------------------- /comparison/web/tlbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/web/tlbo.py -------------------------------------------------------------------------------- /comparison/word2vec/cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/word2vec/cs.py -------------------------------------------------------------------------------- /comparison/word2vec/gde3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/word2vec/gde3.py -------------------------------------------------------------------------------- /comparison/word2vec/jaya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/word2vec/jaya.py -------------------------------------------------------------------------------- /comparison/word2vec/nsga2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/word2vec/nsga2.py -------------------------------------------------------------------------------- /comparison/word2vec/pso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/word2vec/pso.py -------------------------------------------------------------------------------- /comparison/word2vec/tlbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/word2vec/tlbo.py -------------------------------------------------------------------------------- /comparison/wordnet/cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/wordnet/cs.py -------------------------------------------------------------------------------- /comparison/wordnet/gde3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/wordnet/gde3.py -------------------------------------------------------------------------------- /comparison/wordnet/jaya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/wordnet/jaya.py -------------------------------------------------------------------------------- /comparison/wordnet/nsga2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/wordnet/nsga2.py -------------------------------------------------------------------------------- /comparison/wordnet/pso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/wordnet/pso.py -------------------------------------------------------------------------------- /comparison/wordnet/tlbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/comparison/wordnet/tlbo.py -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/example.png -------------------------------------------------------------------------------- /oruga2_gde3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/oruga2_gde3.py -------------------------------------------------------------------------------- /oruga2_nsga2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/oruga2_nsga2.py -------------------------------------------------------------------------------- /oruga3_gde3_wmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/oruga3_gde3_wmd.py -------------------------------------------------------------------------------- /oruga3_nsga2_wmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/oruga3_nsga2_wmd.py -------------------------------------------------------------------------------- /oruga_massive_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/oruga_massive_experiments.py -------------------------------------------------------------------------------- /oruga_massive_experiments_smog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/oruga_massive_experiments_smog.py -------------------------------------------------------------------------------- /oruga_webscraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/oruga_webscraping.py -------------------------------------------------------------------------------- /oruga_word2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/oruga_word2vec.py -------------------------------------------------------------------------------- /oruga_wordnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/oruga_wordnet.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/requirements.txt -------------------------------------------------------------------------------- /texts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge-martinez-gil/oruga/HEAD/texts.txt --------------------------------------------------------------------------------