├── .gitignore ├── Dockerfile ├── README.md ├── __init__.py ├── bestiary.json ├── bestiary ├── bestiary-ai.json ├── bestiary-cos.json ├── bestiary-dip.json ├── bestiary-dmg.json ├── bestiary-ggr.json ├── bestiary-gos.json ├── bestiary-hftt.json ├── bestiary-hotdq.json ├── bestiary-kkw.json ├── bestiary-llk.json ├── bestiary-lmop.json ├── bestiary-mag.json ├── bestiary-mm.json ├── bestiary-mtf.json ├── bestiary-oota.json ├── bestiary-oow.json ├── bestiary-phb.json ├── bestiary-pota.json ├── bestiary-ps-a.json ├── bestiary-ps-d.json ├── bestiary-ps-i.json ├── bestiary-ps-k.json ├── bestiary-ps-x.json ├── bestiary-ps-z.json ├── bestiary-rot.json ├── bestiary-skt.json ├── bestiary-stream.json ├── bestiary-tftyp.json ├── bestiary-toa.json ├── bestiary-ttp.json ├── bestiary-ua-ar.json ├── bestiary-ua-wge.json ├── bestiary-vgm.json ├── bestiary-wdh.json ├── bestiary-wdmm.json ├── bestiary-xge.json ├── fluff-bestiary-ai.json ├── fluff-bestiary-cos.json ├── fluff-bestiary-dip.json ├── fluff-bestiary-dmg.json ├── fluff-bestiary-ggr.json ├── fluff-bestiary-gos.json ├── fluff-bestiary-hftt.json ├── fluff-bestiary-hotdq.json ├── fluff-bestiary-lmop.json ├── fluff-bestiary-mm.json ├── fluff-bestiary-mtf.json ├── fluff-bestiary-oota.json ├── fluff-bestiary-oow.json ├── fluff-bestiary-pota.json ├── fluff-bestiary-rot.json ├── fluff-bestiary-skt.json ├── fluff-bestiary-tftyp.json ├── fluff-bestiary-toa.json ├── fluff-bestiary-ttp.json ├── fluff-bestiary-vgm.json ├── fluff-bestiary-wdh.json ├── fluff-index.json ├── index.json ├── meta.json ├── srd-monsters.json └── traits.json ├── bestiary_0_reordered.json ├── bestiary_new.json ├── bestiary_reordered.json ├── biased_sampler.py ├── create_bestiary_model.py ├── dndbeyond_scrape ├── __init__.py ├── backup_dndbeyond.json ├── dnd.html ├── dndbeyond.json ├── items.py ├── middlewares.py ├── pipelines.py ├── settings.py └── spiders │ ├── __init__.py │ └── monster_spider.py ├── docker-compose.yml ├── ecr_nginx.sh ├── ecr_push.sh ├── ecs_app.py ├── ecs_req.txt ├── experiment.py ├── finetune_homebrew.py ├── front.py ├── generate_one.py ├── gpt_2_length_patch.py ├── gpt_2_length_patch71.py ├── homebrew.json ├── homebrew_0_reordered.json ├── homebrew_reordered.json ├── lambda_function.py ├── load_json.py ├── local_nginx.conf ├── names.txt ├── nginx.conf ├── nginx_dockerfile ├── reorder_json.py ├── requirements.txt ├── run_training.py ├── samples ├── dnd1 │ └── samples-101 ├── dnd2 │ ├── samples-101 │ └── samples-201 └── run1 │ ├── samples-101 │ └── samples-201 ├── scrapy.cfg └── shakespeare.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bestiary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary.json -------------------------------------------------------------------------------- /bestiary/bestiary-ai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-ai.json -------------------------------------------------------------------------------- /bestiary/bestiary-cos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-cos.json -------------------------------------------------------------------------------- /bestiary/bestiary-dip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-dip.json -------------------------------------------------------------------------------- /bestiary/bestiary-dmg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-dmg.json -------------------------------------------------------------------------------- /bestiary/bestiary-ggr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-ggr.json -------------------------------------------------------------------------------- /bestiary/bestiary-gos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-gos.json -------------------------------------------------------------------------------- /bestiary/bestiary-hftt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-hftt.json -------------------------------------------------------------------------------- /bestiary/bestiary-hotdq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-hotdq.json -------------------------------------------------------------------------------- /bestiary/bestiary-kkw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-kkw.json -------------------------------------------------------------------------------- /bestiary/bestiary-llk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-llk.json -------------------------------------------------------------------------------- /bestiary/bestiary-lmop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-lmop.json -------------------------------------------------------------------------------- /bestiary/bestiary-mag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-mag.json -------------------------------------------------------------------------------- /bestiary/bestiary-mm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-mm.json -------------------------------------------------------------------------------- /bestiary/bestiary-mtf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-mtf.json -------------------------------------------------------------------------------- /bestiary/bestiary-oota.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-oota.json -------------------------------------------------------------------------------- /bestiary/bestiary-oow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-oow.json -------------------------------------------------------------------------------- /bestiary/bestiary-phb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-phb.json -------------------------------------------------------------------------------- /bestiary/bestiary-pota.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-pota.json -------------------------------------------------------------------------------- /bestiary/bestiary-ps-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-ps-a.json -------------------------------------------------------------------------------- /bestiary/bestiary-ps-d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-ps-d.json -------------------------------------------------------------------------------- /bestiary/bestiary-ps-i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-ps-i.json -------------------------------------------------------------------------------- /bestiary/bestiary-ps-k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-ps-k.json -------------------------------------------------------------------------------- /bestiary/bestiary-ps-x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-ps-x.json -------------------------------------------------------------------------------- /bestiary/bestiary-ps-z.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-ps-z.json -------------------------------------------------------------------------------- /bestiary/bestiary-rot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-rot.json -------------------------------------------------------------------------------- /bestiary/bestiary-skt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-skt.json -------------------------------------------------------------------------------- /bestiary/bestiary-stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-stream.json -------------------------------------------------------------------------------- /bestiary/bestiary-tftyp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-tftyp.json -------------------------------------------------------------------------------- /bestiary/bestiary-toa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-toa.json -------------------------------------------------------------------------------- /bestiary/bestiary-ttp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-ttp.json -------------------------------------------------------------------------------- /bestiary/bestiary-ua-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-ua-ar.json -------------------------------------------------------------------------------- /bestiary/bestiary-ua-wge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-ua-wge.json -------------------------------------------------------------------------------- /bestiary/bestiary-vgm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-vgm.json -------------------------------------------------------------------------------- /bestiary/bestiary-wdh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-wdh.json -------------------------------------------------------------------------------- /bestiary/bestiary-wdmm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-wdmm.json -------------------------------------------------------------------------------- /bestiary/bestiary-xge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/bestiary-xge.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-ai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-ai.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-cos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-cos.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-dip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-dip.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-dmg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-dmg.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-ggr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-ggr.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-gos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-gos.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-hftt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-hftt.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-hotdq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-hotdq.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-lmop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-lmop.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-mm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-mm.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-mtf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-mtf.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-oota.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-oota.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-oow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-oow.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-pota.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-pota.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-rot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-rot.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-skt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-skt.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-tftyp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-tftyp.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-toa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-toa.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-ttp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-ttp.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-vgm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-vgm.json -------------------------------------------------------------------------------- /bestiary/fluff-bestiary-wdh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-bestiary-wdh.json -------------------------------------------------------------------------------- /bestiary/fluff-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/fluff-index.json -------------------------------------------------------------------------------- /bestiary/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/index.json -------------------------------------------------------------------------------- /bestiary/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/meta.json -------------------------------------------------------------------------------- /bestiary/srd-monsters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/srd-monsters.json -------------------------------------------------------------------------------- /bestiary/traits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary/traits.json -------------------------------------------------------------------------------- /bestiary_0_reordered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary_0_reordered.json -------------------------------------------------------------------------------- /bestiary_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary_new.json -------------------------------------------------------------------------------- /bestiary_reordered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/bestiary_reordered.json -------------------------------------------------------------------------------- /biased_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/biased_sampler.py -------------------------------------------------------------------------------- /create_bestiary_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/create_bestiary_model.py -------------------------------------------------------------------------------- /dndbeyond_scrape/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dndbeyond_scrape/backup_dndbeyond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/dndbeyond_scrape/backup_dndbeyond.json -------------------------------------------------------------------------------- /dndbeyond_scrape/dnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/dndbeyond_scrape/dnd.html -------------------------------------------------------------------------------- /dndbeyond_scrape/dndbeyond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/dndbeyond_scrape/dndbeyond.json -------------------------------------------------------------------------------- /dndbeyond_scrape/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/dndbeyond_scrape/items.py -------------------------------------------------------------------------------- /dndbeyond_scrape/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/dndbeyond_scrape/middlewares.py -------------------------------------------------------------------------------- /dndbeyond_scrape/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/dndbeyond_scrape/pipelines.py -------------------------------------------------------------------------------- /dndbeyond_scrape/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/dndbeyond_scrape/settings.py -------------------------------------------------------------------------------- /dndbeyond_scrape/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/dndbeyond_scrape/spiders/__init__.py -------------------------------------------------------------------------------- /dndbeyond_scrape/spiders/monster_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/dndbeyond_scrape/spiders/monster_spider.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ecr_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/ecr_nginx.sh -------------------------------------------------------------------------------- /ecr_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/ecr_push.sh -------------------------------------------------------------------------------- /ecs_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/ecs_app.py -------------------------------------------------------------------------------- /ecs_req.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/ecs_req.txt -------------------------------------------------------------------------------- /experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/experiment.py -------------------------------------------------------------------------------- /finetune_homebrew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/finetune_homebrew.py -------------------------------------------------------------------------------- /front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/front.py -------------------------------------------------------------------------------- /generate_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/generate_one.py -------------------------------------------------------------------------------- /gpt_2_length_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/gpt_2_length_patch.py -------------------------------------------------------------------------------- /gpt_2_length_patch71.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/gpt_2_length_patch71.py -------------------------------------------------------------------------------- /homebrew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/homebrew.json -------------------------------------------------------------------------------- /homebrew_0_reordered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/homebrew_0_reordered.json -------------------------------------------------------------------------------- /homebrew_reordered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/homebrew_reordered.json -------------------------------------------------------------------------------- /lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/lambda_function.py -------------------------------------------------------------------------------- /load_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/load_json.py -------------------------------------------------------------------------------- /local_nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/local_nginx.conf -------------------------------------------------------------------------------- /names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/names.txt -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/nginx.conf -------------------------------------------------------------------------------- /nginx_dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/nginx_dockerfile -------------------------------------------------------------------------------- /reorder_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/reorder_json.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/run_training.py -------------------------------------------------------------------------------- /samples/dnd1/samples-101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/samples/dnd1/samples-101 -------------------------------------------------------------------------------- /samples/dnd2/samples-101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/samples/dnd2/samples-101 -------------------------------------------------------------------------------- /samples/dnd2/samples-201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/samples/dnd2/samples-201 -------------------------------------------------------------------------------- /samples/run1/samples-101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/samples/run1/samples-101 -------------------------------------------------------------------------------- /samples/run1/samples-201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/samples/run1/samples-201 -------------------------------------------------------------------------------- /scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/scrapy.cfg -------------------------------------------------------------------------------- /shakespeare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhlanm/gpt-2-dnd/HEAD/shakespeare.txt --------------------------------------------------------------------------------