├── .github └── workflows │ └── build-frontend.yml ├── .gitignore ├── .gitmodules ├── .python-version ├── LICENSE ├── README.md ├── font_test.typ ├── pyproject.toml ├── typress ├── __init__.py ├── __main__.py ├── app │ ├── __init__.py │ ├── api.py │ ├── frontend │ │ ├── .eslintrc.cjs │ │ ├── .prettierrc.json │ │ ├── .vscode │ │ │ └── extensions.json │ │ ├── README.md │ │ ├── dist │ │ │ ├── assets │ │ │ │ ├── index-DtKiGPle.css │ │ │ │ └── index-aC0zkVlg.js │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ └── all-in-one-lite.bundle.js │ │ │ └── wasm │ │ │ │ ├── typst_ts_renderer_bg.wasm │ │ │ │ └── typst_ts_web_compiler_bg.wasm │ │ ├── index.html │ │ ├── jsconfig.json │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── postcss.config.js │ │ ├── public │ │ │ ├── js │ │ │ │ └── all-in-one-lite.bundle.js │ │ │ └── wasm │ │ │ │ ├── typst_ts_renderer_bg.wasm │ │ │ │ └── typst_ts_web_compiler_bg.wasm │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── assets │ │ │ │ └── main.css │ │ │ ├── components │ │ │ │ ├── FeedbackPopup.vue │ │ │ │ ├── FormulaImg.vue │ │ │ │ ├── FormulaResult.vue │ │ │ │ └── Shields.vue │ │ │ └── main.js │ │ ├── tailwind.config.js │ │ └── vite.config.js │ └── model │ │ ├── det_model │ │ ├── Bbox.py │ │ ├── LICENSE │ │ ├── config │ │ │ └── infer_cfg.yml │ │ ├── infer.py │ │ ├── model.py │ │ └── preprocess.py │ │ ├── ocr_model │ │ └── model.py │ │ ├── typressmodel.py │ │ └── utils.py ├── dataset │ ├── __init__.py │ ├── __main__.py │ ├── genimg │ │ ├── genimg.py │ │ ├── img_augment.py │ │ └── typ_process.py │ └── tools.py ├── train │ ├── __init__.py │ ├── __main__.py │ ├── dataset.py │ ├── eval.py │ ├── train.py │ └── train_tokenizer.py └── train_config.example.json ├── uv.lock └── wsgi.py /.github/workflows/build-frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/.github/workflows/build-frontend.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/.gitmodules -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/README.md -------------------------------------------------------------------------------- /font_test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/font_test.typ -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/pyproject.toml -------------------------------------------------------------------------------- /typress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typress/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/__main__.py -------------------------------------------------------------------------------- /typress/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typress/app/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/api.py -------------------------------------------------------------------------------- /typress/app/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /typress/app/frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/.prettierrc.json -------------------------------------------------------------------------------- /typress/app/frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/.vscode/extensions.json -------------------------------------------------------------------------------- /typress/app/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/README.md -------------------------------------------------------------------------------- /typress/app/frontend/dist/assets/index-DtKiGPle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/dist/assets/index-DtKiGPle.css -------------------------------------------------------------------------------- /typress/app/frontend/dist/assets/index-aC0zkVlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/dist/assets/index-aC0zkVlg.js -------------------------------------------------------------------------------- /typress/app/frontend/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/dist/index.html -------------------------------------------------------------------------------- /typress/app/frontend/dist/js/all-in-one-lite.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/dist/js/all-in-one-lite.bundle.js -------------------------------------------------------------------------------- /typress/app/frontend/dist/wasm/typst_ts_renderer_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/dist/wasm/typst_ts_renderer_bg.wasm -------------------------------------------------------------------------------- /typress/app/frontend/dist/wasm/typst_ts_web_compiler_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/dist/wasm/typst_ts_web_compiler_bg.wasm -------------------------------------------------------------------------------- /typress/app/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/index.html -------------------------------------------------------------------------------- /typress/app/frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/jsconfig.json -------------------------------------------------------------------------------- /typress/app/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/package.json -------------------------------------------------------------------------------- /typress/app/frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /typress/app/frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/postcss.config.js -------------------------------------------------------------------------------- /typress/app/frontend/public/js/all-in-one-lite.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/public/js/all-in-one-lite.bundle.js -------------------------------------------------------------------------------- /typress/app/frontend/public/wasm/typst_ts_renderer_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/public/wasm/typst_ts_renderer_bg.wasm -------------------------------------------------------------------------------- /typress/app/frontend/public/wasm/typst_ts_web_compiler_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/public/wasm/typst_ts_web_compiler_bg.wasm -------------------------------------------------------------------------------- /typress/app/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/src/App.vue -------------------------------------------------------------------------------- /typress/app/frontend/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/src/assets/main.css -------------------------------------------------------------------------------- /typress/app/frontend/src/components/FeedbackPopup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/src/components/FeedbackPopup.vue -------------------------------------------------------------------------------- /typress/app/frontend/src/components/FormulaImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/src/components/FormulaImg.vue -------------------------------------------------------------------------------- /typress/app/frontend/src/components/FormulaResult.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/src/components/FormulaResult.vue -------------------------------------------------------------------------------- /typress/app/frontend/src/components/Shields.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/src/components/Shields.vue -------------------------------------------------------------------------------- /typress/app/frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/src/main.js -------------------------------------------------------------------------------- /typress/app/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/tailwind.config.js -------------------------------------------------------------------------------- /typress/app/frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/frontend/vite.config.js -------------------------------------------------------------------------------- /typress/app/model/det_model/Bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/model/det_model/Bbox.py -------------------------------------------------------------------------------- /typress/app/model/det_model/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/model/det_model/LICENSE -------------------------------------------------------------------------------- /typress/app/model/det_model/config/infer_cfg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/model/det_model/config/infer_cfg.yml -------------------------------------------------------------------------------- /typress/app/model/det_model/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/model/det_model/infer.py -------------------------------------------------------------------------------- /typress/app/model/det_model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/model/det_model/model.py -------------------------------------------------------------------------------- /typress/app/model/det_model/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/model/det_model/preprocess.py -------------------------------------------------------------------------------- /typress/app/model/ocr_model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/model/ocr_model/model.py -------------------------------------------------------------------------------- /typress/app/model/typressmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/model/typressmodel.py -------------------------------------------------------------------------------- /typress/app/model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/app/model/utils.py -------------------------------------------------------------------------------- /typress/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typress/dataset/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/dataset/__main__.py -------------------------------------------------------------------------------- /typress/dataset/genimg/genimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/dataset/genimg/genimg.py -------------------------------------------------------------------------------- /typress/dataset/genimg/img_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/dataset/genimg/img_augment.py -------------------------------------------------------------------------------- /typress/dataset/genimg/typ_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/dataset/genimg/typ_process.py -------------------------------------------------------------------------------- /typress/dataset/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/dataset/tools.py -------------------------------------------------------------------------------- /typress/train/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typress/train/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/train/__main__.py -------------------------------------------------------------------------------- /typress/train/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/train/dataset.py -------------------------------------------------------------------------------- /typress/train/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/train/eval.py -------------------------------------------------------------------------------- /typress/train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/train/train.py -------------------------------------------------------------------------------- /typress/train/train_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/train/train_tokenizer.py -------------------------------------------------------------------------------- /typress/train_config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/typress/train_config.example.json -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/uv.lock -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/typress/HEAD/wsgi.py --------------------------------------------------------------------------------