├── .gitignore ├── LICENSE ├── README.md ├── configs └── passgpt-16chars.yaml ├── notebooks └── Guided Password Generation.ipynb └── src ├── create_tokenizer.py ├── generate_passwords.py ├── train_passgpt.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javirandor/passgpt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javirandor/passgpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javirandor/passgpt/HEAD/README.md -------------------------------------------------------------------------------- /configs/passgpt-16chars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javirandor/passgpt/HEAD/configs/passgpt-16chars.yaml -------------------------------------------------------------------------------- /notebooks/Guided Password Generation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javirandor/passgpt/HEAD/notebooks/Guided Password Generation.ipynb -------------------------------------------------------------------------------- /src/create_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javirandor/passgpt/HEAD/src/create_tokenizer.py -------------------------------------------------------------------------------- /src/generate_passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javirandor/passgpt/HEAD/src/generate_passwords.py -------------------------------------------------------------------------------- /src/train_passgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javirandor/passgpt/HEAD/src/train_passgpt.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javirandor/passgpt/HEAD/src/utils.py --------------------------------------------------------------------------------