├── .gitattributes ├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── extract.py ├── meloetta.png ├── meloetta ├── __init__.py ├── actors │ ├── __init__.py │ ├── base.py │ └── types.py ├── client.py ├── data.py ├── embeddings.py ├── frameworks │ ├── __init__.py │ ├── max_damage │ │ ├── __init__.py │ │ ├── actor.py │ │ └── model.py │ ├── mewzero │ │ ├── __init__.py │ │ ├── actor.py │ │ ├── buffer.py │ │ ├── config.py │ │ ├── entropy.py │ │ ├── learner.py │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── encoder.py │ │ │ ├── encoders │ │ │ │ ├── __init__.py │ │ │ │ ├── private_encoder.py │ │ │ │ ├── private_spatial.py │ │ │ │ ├── public_encoder.py │ │ │ │ ├── public_spatial.py │ │ │ │ ├── scalar_encoder.py │ │ │ │ └── weather_encoder.py │ │ │ ├── heads │ │ │ │ ├── __init__.py │ │ │ │ ├── action_type_head.py │ │ │ │ ├── flag_head.py │ │ │ │ ├── max_move_head.py │ │ │ │ ├── move_head.py │ │ │ │ └── switch_head.py │ │ │ ├── interfaces.py │ │ │ ├── main.py │ │ │ ├── policy.py │ │ │ ├── utils.py │ │ │ └── value.py │ │ ├── train.py │ │ ├── tree.py │ │ └── utils.py │ ├── nash_ketchum │ │ ├── actor.py │ │ ├── buffer.py │ │ ├── config.py │ │ ├── entropy.py │ │ ├── learner.py │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── encoder.py │ │ │ ├── encoders │ │ │ │ ├── __init__.py │ │ │ │ ├── history_encoder.py │ │ │ │ ├── scalar_encoder.py │ │ │ │ └── side_encoder.py │ │ │ ├── interfaces.py │ │ │ ├── main.py │ │ │ ├── policy.py │ │ │ ├── utils.py │ │ │ └── value.py │ │ ├── modelv2 │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── encoder.py │ │ │ ├── encoders │ │ │ │ ├── __init__.py │ │ │ │ ├── history_encoder.py │ │ │ │ ├── scalar_encoder.py │ │ │ │ └── side_encoder.py │ │ │ ├── interfaces.py │ │ │ ├── main.py │ │ │ ├── policy.py │ │ │ ├── utils.py │ │ │ └── value.py │ │ ├── train.py │ │ └── utils.py │ ├── proxima │ │ ├── __init__.py │ │ ├── actor.py │ │ ├── buffer.py │ │ ├── config.py │ │ ├── entropy.py │ │ ├── learner.py │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── encoder.py │ │ │ ├── encoders │ │ │ │ ├── __init__.py │ │ │ │ ├── scalar_encoder.py │ │ │ │ └── side_encoder.py │ │ │ ├── interfaces.py │ │ │ ├── main.py │ │ │ ├── policy.py │ │ │ ├── utils.py │ │ │ └── value.py │ │ ├── train.py │ │ └── utils.py │ └── random │ │ ├── __init__.py │ │ └── actor.py ├── js │ ├── README.md │ ├── client.js │ ├── client │ │ ├── abilities.js │ │ ├── aliases.js │ │ ├── battle-choices.js │ │ ├── battle-dex-data.js │ │ ├── battle-dex.js │ │ ├── battle-log.js │ │ ├── battle-scene-stub.js │ │ ├── battle-text-parser.js │ │ ├── battle-tooltips.js │ │ ├── battle.js │ │ ├── conditions.js │ │ ├── formats-data.js │ │ ├── items.js │ │ ├── learnsets.js │ │ ├── moves.js │ │ ├── natures.js │ │ ├── pokedex.js │ │ ├── tags.js │ │ ├── teambuilder-tables.js │ │ └── typechart.js │ ├── cycle.js │ ├── data │ │ ├── BattleAbilities.json │ │ ├── BattleAliases.json │ │ ├── BattleArticleTitles.json │ │ ├── BattleFormatsData.json │ │ ├── BattleItems.json │ │ ├── BattleLearnsets.json │ │ ├── BattleMovedex.json │ │ ├── BattlePokedex.json │ │ ├── BattleSearchCountIndex.json │ │ ├── BattleSearchIndex.json │ │ ├── BattleSearchIndexOffset.json │ │ ├── BattleTeambuilderTable.json │ │ ├── BattleText.json │ │ ├── BattleTypeChart.json │ │ └── Formats.json │ ├── engine.js │ ├── polyfill.js │ ├── predef.js │ └── underscore.js ├── player.py ├── pretrained │ ├── gen1 │ │ ├── itemdex.pt │ │ ├── movedex.pt │ │ └── pokedex.pt │ ├── gen2 │ │ ├── itemdex.pt │ │ ├── movedex.pt │ │ └── pokedex.pt │ ├── gen3 │ │ ├── abilitydex.pt │ │ ├── itemdex.pt │ │ ├── movedex.pt │ │ └── pokedex.pt │ ├── gen4 │ │ ├── abilitydex.pt │ │ ├── itemdex.pt │ │ ├── movedex.pt │ │ └── pokedex.pt │ ├── gen5 │ │ ├── abilitydex.pt │ │ ├── itemdex.pt │ │ ├── movedex.pt │ │ └── pokedex.pt │ ├── gen6 │ │ ├── abilitydex.pt │ │ ├── itemdex.pt │ │ ├── movedex.pt │ │ └── pokedex.pt │ ├── gen7 │ │ ├── abilitydex.pt │ │ ├── itemdex.pt │ │ ├── movedex.pt │ │ └── pokedex.pt │ ├── gen8 │ │ ├── abilitydex.pt │ │ ├── itemdex.pt │ │ ├── movedex.pt │ │ └── pokedex.pt │ ├── gen9 │ │ ├── abilitydex.pt │ │ ├── itemdex.pt │ │ ├── movedex.pt │ │ └── pokedex.pt │ ├── pproc.py │ ├── schema.json │ ├── schema.py │ ├── simsiam.py │ ├── wnsc.py │ └── wsnc.json ├── room.py ├── utils.py ├── vector.py └── workers │ ├── __init__.py │ ├── barrier.py │ ├── eval.py │ └── selfplay.py ├── requirements.txt ├── setup.py ├── start.bat └── start.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/README.md -------------------------------------------------------------------------------- /extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/extract.py -------------------------------------------------------------------------------- /meloetta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta.png -------------------------------------------------------------------------------- /meloetta/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1.0" 2 | -------------------------------------------------------------------------------- /meloetta/actors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meloetta/actors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/actors/base.py -------------------------------------------------------------------------------- /meloetta/actors/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/actors/types.py -------------------------------------------------------------------------------- /meloetta/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/client.py -------------------------------------------------------------------------------- /meloetta/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/data.py -------------------------------------------------------------------------------- /meloetta/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/embeddings.py -------------------------------------------------------------------------------- /meloetta/frameworks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meloetta/frameworks/max_damage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/max_damage/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/max_damage/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/max_damage/actor.py -------------------------------------------------------------------------------- /meloetta/frameworks/max_damage/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/max_damage/model.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/actor.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/buffer.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/config.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/entropy.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/learner.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/config.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/core.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/encoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/encoders/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/encoders/private_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/encoders/private_encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/encoders/private_spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/encoders/private_spatial.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/encoders/public_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/encoders/public_encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/encoders/public_spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/encoders/public_spatial.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/encoders/scalar_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/encoders/scalar_encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/encoders/weather_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/encoders/weather_encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/heads/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/heads/action_type_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/heads/action_type_head.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/heads/flag_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/heads/flag_head.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/heads/max_move_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/heads/max_move_head.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/heads/move_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/heads/move_head.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/heads/switch_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/heads/switch_head.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/interfaces.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/main.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/policy.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/utils.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/model/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/model/value.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/train.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/tree.py -------------------------------------------------------------------------------- /meloetta/frameworks/mewzero/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/mewzero/utils.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/actor.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/buffer.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/config.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/entropy.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/learner.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/config.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/core.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/encoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/encoders/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/encoders/history_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/encoders/history_encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/encoders/scalar_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/encoders/scalar_encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/encoders/side_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/encoders/side_encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/interfaces.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/main.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/policy.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/utils.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/model/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/model/value.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/config.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/core.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/encoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/encoders/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/encoders/history_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/encoders/history_encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/encoders/scalar_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/encoders/scalar_encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/encoders/side_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/encoders/side_encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/interfaces.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/main.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/policy.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/utils.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/modelv2/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/modelv2/value.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/train.py -------------------------------------------------------------------------------- /meloetta/frameworks/nash_ketchum/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/nash_ketchum/utils.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/actor.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/buffer.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/config.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/entropy.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/learner.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/model/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/model/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/model/config.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/model/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/model/core.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/model/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/model/encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/model/encoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/model/encoders/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/model/encoders/scalar_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/model/encoders/scalar_encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/model/encoders/side_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/model/encoders/side_encoder.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/model/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/model/interfaces.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/model/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/model/main.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/model/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/model/policy.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/model/utils.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/model/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/model/value.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/train.py -------------------------------------------------------------------------------- /meloetta/frameworks/proxima/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/proxima/utils.py -------------------------------------------------------------------------------- /meloetta/frameworks/random/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/random/__init__.py -------------------------------------------------------------------------------- /meloetta/frameworks/random/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/frameworks/random/actor.py -------------------------------------------------------------------------------- /meloetta/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/README.md -------------------------------------------------------------------------------- /meloetta/js/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client.js -------------------------------------------------------------------------------- /meloetta/js/client/abilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/abilities.js -------------------------------------------------------------------------------- /meloetta/js/client/aliases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/aliases.js -------------------------------------------------------------------------------- /meloetta/js/client/battle-choices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/battle-choices.js -------------------------------------------------------------------------------- /meloetta/js/client/battle-dex-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/battle-dex-data.js -------------------------------------------------------------------------------- /meloetta/js/client/battle-dex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/battle-dex.js -------------------------------------------------------------------------------- /meloetta/js/client/battle-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/battle-log.js -------------------------------------------------------------------------------- /meloetta/js/client/battle-scene-stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/battle-scene-stub.js -------------------------------------------------------------------------------- /meloetta/js/client/battle-text-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/battle-text-parser.js -------------------------------------------------------------------------------- /meloetta/js/client/battle-tooltips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/battle-tooltips.js -------------------------------------------------------------------------------- /meloetta/js/client/battle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/battle.js -------------------------------------------------------------------------------- /meloetta/js/client/conditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/conditions.js -------------------------------------------------------------------------------- /meloetta/js/client/formats-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/formats-data.js -------------------------------------------------------------------------------- /meloetta/js/client/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/items.js -------------------------------------------------------------------------------- /meloetta/js/client/learnsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/learnsets.js -------------------------------------------------------------------------------- /meloetta/js/client/moves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/moves.js -------------------------------------------------------------------------------- /meloetta/js/client/natures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/natures.js -------------------------------------------------------------------------------- /meloetta/js/client/pokedex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/pokedex.js -------------------------------------------------------------------------------- /meloetta/js/client/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/tags.js -------------------------------------------------------------------------------- /meloetta/js/client/teambuilder-tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/teambuilder-tables.js -------------------------------------------------------------------------------- /meloetta/js/client/typechart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/client/typechart.js -------------------------------------------------------------------------------- /meloetta/js/cycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/cycle.js -------------------------------------------------------------------------------- /meloetta/js/data/BattleAbilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattleAbilities.json -------------------------------------------------------------------------------- /meloetta/js/data/BattleAliases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattleAliases.json -------------------------------------------------------------------------------- /meloetta/js/data/BattleArticleTitles.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /meloetta/js/data/BattleFormatsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattleFormatsData.json -------------------------------------------------------------------------------- /meloetta/js/data/BattleItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattleItems.json -------------------------------------------------------------------------------- /meloetta/js/data/BattleLearnsets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattleLearnsets.json -------------------------------------------------------------------------------- /meloetta/js/data/BattleMovedex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattleMovedex.json -------------------------------------------------------------------------------- /meloetta/js/data/BattlePokedex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattlePokedex.json -------------------------------------------------------------------------------- /meloetta/js/data/BattleSearchCountIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattleSearchCountIndex.json -------------------------------------------------------------------------------- /meloetta/js/data/BattleSearchIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattleSearchIndex.json -------------------------------------------------------------------------------- /meloetta/js/data/BattleSearchIndexOffset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattleSearchIndexOffset.json -------------------------------------------------------------------------------- /meloetta/js/data/BattleTeambuilderTable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattleTeambuilderTable.json -------------------------------------------------------------------------------- /meloetta/js/data/BattleText.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattleText.json -------------------------------------------------------------------------------- /meloetta/js/data/BattleTypeChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/BattleTypeChart.json -------------------------------------------------------------------------------- /meloetta/js/data/Formats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/data/Formats.json -------------------------------------------------------------------------------- /meloetta/js/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/engine.js -------------------------------------------------------------------------------- /meloetta/js/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/polyfill.js -------------------------------------------------------------------------------- /meloetta/js/predef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/predef.js -------------------------------------------------------------------------------- /meloetta/js/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/js/underscore.js -------------------------------------------------------------------------------- /meloetta/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/player.py -------------------------------------------------------------------------------- /meloetta/pretrained/gen1/itemdex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen1/itemdex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen1/movedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen1/movedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen1/pokedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen1/pokedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen2/itemdex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen2/itemdex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen2/movedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen2/movedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen2/pokedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen2/pokedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen3/abilitydex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen3/abilitydex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen3/itemdex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen3/itemdex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen3/movedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen3/movedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen3/pokedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen3/pokedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen4/abilitydex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen4/abilitydex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen4/itemdex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen4/itemdex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen4/movedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen4/movedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen4/pokedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen4/pokedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen5/abilitydex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen5/abilitydex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen5/itemdex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen5/itemdex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen5/movedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen5/movedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen5/pokedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen5/pokedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen6/abilitydex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen6/abilitydex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen6/itemdex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen6/itemdex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen6/movedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen6/movedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen6/pokedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen6/pokedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen7/abilitydex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen7/abilitydex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen7/itemdex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen7/itemdex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen7/movedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen7/movedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen7/pokedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen7/pokedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen8/abilitydex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen8/abilitydex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen8/itemdex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen8/itemdex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen8/movedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen8/movedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen8/pokedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen8/pokedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen9/abilitydex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen9/abilitydex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen9/itemdex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen9/itemdex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen9/movedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen9/movedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/gen9/pokedex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/gen9/pokedex.pt -------------------------------------------------------------------------------- /meloetta/pretrained/pproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/pproc.py -------------------------------------------------------------------------------- /meloetta/pretrained/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/schema.json -------------------------------------------------------------------------------- /meloetta/pretrained/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/schema.py -------------------------------------------------------------------------------- /meloetta/pretrained/simsiam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/simsiam.py -------------------------------------------------------------------------------- /meloetta/pretrained/wnsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/wnsc.py -------------------------------------------------------------------------------- /meloetta/pretrained/wsnc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/pretrained/wsnc.json -------------------------------------------------------------------------------- /meloetta/room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/room.py -------------------------------------------------------------------------------- /meloetta/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/utils.py -------------------------------------------------------------------------------- /meloetta/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/vector.py -------------------------------------------------------------------------------- /meloetta/workers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/workers/__init__.py -------------------------------------------------------------------------------- /meloetta/workers/barrier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/workers/barrier.py -------------------------------------------------------------------------------- /meloetta/workers/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/workers/eval.py -------------------------------------------------------------------------------- /meloetta/workers/selfplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/meloetta/workers/selfplay.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/setup.py -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/start.bat -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spktrm/meloetta/HEAD/start.sh --------------------------------------------------------------------------------