├── .gitignore ├── Datasets └── .gitignore ├── LICENSE.md ├── README.md ├── preformat iam ├── preformat_iam.py └── xml │ ├── test.xml │ ├── train.xml │ └── valid.xml ├── requirements.txt └── source ├── format_data.py ├── main.py ├── models.py ├── ocr.py ├── ocr_dataset.py ├── outputs └── GFCN_iam_lignes_64H_NKR │ └── checkpoints │ └── best_578.pt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/.gitignore -------------------------------------------------------------------------------- /Datasets/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/README.md -------------------------------------------------------------------------------- /preformat iam/preformat_iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/preformat iam/preformat_iam.py -------------------------------------------------------------------------------- /preformat iam/xml/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/preformat iam/xml/test.xml -------------------------------------------------------------------------------- /preformat iam/xml/train.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/preformat iam/xml/train.xml -------------------------------------------------------------------------------- /preformat iam/xml/valid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/preformat iam/xml/valid.xml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/requirements.txt -------------------------------------------------------------------------------- /source/format_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/source/format_data.py -------------------------------------------------------------------------------- /source/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/source/main.py -------------------------------------------------------------------------------- /source/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/source/models.py -------------------------------------------------------------------------------- /source/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/source/ocr.py -------------------------------------------------------------------------------- /source/ocr_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/source/ocr_dataset.py -------------------------------------------------------------------------------- /source/outputs/GFCN_iam_lignes_64H_NKR/checkpoints/best_578.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/source/outputs/GFCN_iam_lignes_64H_NKR/checkpoints/best_578.pt -------------------------------------------------------------------------------- /source/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FactoDeepLearning/LinePytorchOCR/HEAD/source/utils.py --------------------------------------------------------------------------------