prototype of crossword generation

This commit is contained in:
Jonas Weinz 2021-06-13 21:06:55 +02:00
parent 0d03a85923
commit f09d2d79f9
8 changed files with 1126 additions and 0 deletions

7
.gitignore vendored
View File

@ -4,6 +4,8 @@ __pycache__/
*.py[cod] *.py[cod]
*$py.class *$py.class
*.lock
# C extensions # C extensions
*.so *.so
@ -58,3 +60,8 @@ docs/_build/
# PyBuilder # PyBuilder
target/ target/
# archives
*.bz2
# jupyter
.ipynb_checkpoints/

View File

@ -9,6 +9,8 @@ numpy = "*"
pylint = "*" pylint = "*"
flake8 = "*" flake8 = "*"
rope = "*" rope = "*"
pandas = "*"
tqdm = "*"
[dev-packages] [dev-packages]

4
data/.gitattributes vendored Normal file
View File

@ -0,0 +1,4 @@
english.words filter=lfs diff=lfs merge=lfs -text
german.words filter=lfs diff=lfs merge=lfs -text
english.json filter=lfs diff=lfs merge=lfs -text
german.json filter=lfs diff=lfs merge=lfs -text

1101
data/data_tests.ipynb Normal file

File diff suppressed because it is too large Load Diff

BIN
data/english.json (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/english.words (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/german.json (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/german.words (Stored with Git LFS) Normal file

Binary file not shown.