├── .gitignore ├── README.md ├── README_zh.md ├── assets ├── image1.png ├── image2.png ├── showcase.gif └── showcase_math.gif ├── math.png ├── ocr_project ├── model │ ├── config.json │ ├── configuration_deepseek_v2.py │ ├── conversation.py │ ├── deepencoder.py │ ├── model.safetensors.index.json │ ├── modeling_deepseekocr.py │ ├── modeling_deepseekv2.py │ ├── processor_config.json │ ├── special_tokens_map.json │ ├── tokenizer.json │ └── tokenizer_config.json ├── output │ ├── images │ │ ├── 0.jpg │ │ └── 1.jpg │ ├── result.mmd │ └── result_with_boxes.jpg ├── requirements.txt └── scripts │ └── run_dpsk_ocr.py ├── start.sh └── web_project ├── backend ├── README.md ├── app.py ├── index.js ├── package-lock.json ├── package.json └── requirements.txt ├── frontend ├── .gitignore ├── .vscode │ └── extensions.json ├── README.md ├── index.html ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── App.vue │ ├── assets │ │ ├── base.css │ │ ├── logo.svg │ │ ├── main.css │ │ └── workspace.css │ ├── components │ │ ├── ActionCard.vue │ │ ├── HelloWorld.vue │ │ ├── HeroSection.vue │ │ ├── HistoryCard.vue │ │ ├── LayoutDetailsCard.vue │ │ ├── LogCard.vue │ │ ├── MetaCard.vue │ │ ├── ModeCard.vue │ │ ├── OutputCard.vue │ │ ├── PageTextCard.vue │ │ ├── PromptCard.vue │ │ ├── TheWelcome.vue │ │ ├── UploadCard.vue │ │ ├── VisualPreviewCard.vue │ │ ├── WelcomeItem.vue │ │ ├── WorkflowStepsCard.vue │ │ └── icons │ │ │ ├── IconCommunity.vue │ │ │ ├── IconDocumentation.vue │ │ │ ├── IconEcosystem.vue │ │ │ ├── IconSupport.vue │ │ │ └── IconTooling.vue │ └── main.js └── vite.config.js └── production └── start.sh /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | __pycache__/ 3 | node_modules 4 | *.safetensors 5 | dist 6 | wheels 7 | runs/ 8 | =0.26.0 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/README_zh.md -------------------------------------------------------------------------------- /assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/assets/image1.png -------------------------------------------------------------------------------- /assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/assets/image2.png -------------------------------------------------------------------------------- /assets/showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/assets/showcase.gif -------------------------------------------------------------------------------- /assets/showcase_math.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/assets/showcase_math.gif -------------------------------------------------------------------------------- /math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/math.png -------------------------------------------------------------------------------- /ocr_project/model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/model/config.json -------------------------------------------------------------------------------- /ocr_project/model/configuration_deepseek_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/model/configuration_deepseek_v2.py -------------------------------------------------------------------------------- /ocr_project/model/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/model/conversation.py -------------------------------------------------------------------------------- /ocr_project/model/deepencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/model/deepencoder.py -------------------------------------------------------------------------------- /ocr_project/model/model.safetensors.index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/model/model.safetensors.index.json -------------------------------------------------------------------------------- /ocr_project/model/modeling_deepseekocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/model/modeling_deepseekocr.py -------------------------------------------------------------------------------- /ocr_project/model/modeling_deepseekv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/model/modeling_deepseekv2.py -------------------------------------------------------------------------------- /ocr_project/model/processor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/model/processor_config.json -------------------------------------------------------------------------------- /ocr_project/model/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/model/special_tokens_map.json -------------------------------------------------------------------------------- /ocr_project/model/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/model/tokenizer.json -------------------------------------------------------------------------------- /ocr_project/model/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/model/tokenizer_config.json -------------------------------------------------------------------------------- /ocr_project/output/images/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/output/images/0.jpg -------------------------------------------------------------------------------- /ocr_project/output/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/output/images/1.jpg -------------------------------------------------------------------------------- /ocr_project/output/result.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/output/result.mmd -------------------------------------------------------------------------------- /ocr_project/output/result_with_boxes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/output/result_with_boxes.jpg -------------------------------------------------------------------------------- /ocr_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/requirements.txt -------------------------------------------------------------------------------- /ocr_project/scripts/run_dpsk_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/ocr_project/scripts/run_dpsk_ocr.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/start.sh -------------------------------------------------------------------------------- /web_project/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/backend/README.md -------------------------------------------------------------------------------- /web_project/backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/backend/app.py -------------------------------------------------------------------------------- /web_project/backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/backend/index.js -------------------------------------------------------------------------------- /web_project/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/backend/package-lock.json -------------------------------------------------------------------------------- /web_project/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/backend/package.json -------------------------------------------------------------------------------- /web_project/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/backend/requirements.txt -------------------------------------------------------------------------------- /web_project/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/.gitignore -------------------------------------------------------------------------------- /web_project/frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /web_project/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/README.md -------------------------------------------------------------------------------- /web_project/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/index.html -------------------------------------------------------------------------------- /web_project/frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/jsconfig.json -------------------------------------------------------------------------------- /web_project/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/package-lock.json -------------------------------------------------------------------------------- /web_project/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/package.json -------------------------------------------------------------------------------- /web_project/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/public/favicon.ico -------------------------------------------------------------------------------- /web_project/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/App.vue -------------------------------------------------------------------------------- /web_project/frontend/src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/assets/base.css -------------------------------------------------------------------------------- /web_project/frontend/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/assets/logo.svg -------------------------------------------------------------------------------- /web_project/frontend/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/assets/main.css -------------------------------------------------------------------------------- /web_project/frontend/src/assets/workspace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/assets/workspace.css -------------------------------------------------------------------------------- /web_project/frontend/src/components/ActionCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/ActionCard.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/HeroSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/HeroSection.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/HistoryCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/HistoryCard.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/LayoutDetailsCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/LayoutDetailsCard.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/LogCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/LogCard.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/MetaCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/MetaCard.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/ModeCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/ModeCard.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/OutputCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/OutputCard.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/PageTextCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/PageTextCard.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/PromptCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/PromptCard.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/TheWelcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/TheWelcome.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/UploadCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/UploadCard.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/VisualPreviewCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/VisualPreviewCard.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/WelcomeItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/WelcomeItem.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/WorkflowStepsCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/WorkflowStepsCard.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/icons/IconCommunity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/icons/IconCommunity.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/icons/IconDocumentation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/icons/IconDocumentation.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/icons/IconEcosystem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/icons/IconEcosystem.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/icons/IconSupport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/icons/IconSupport.vue -------------------------------------------------------------------------------- /web_project/frontend/src/components/icons/IconTooling.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/components/icons/IconTooling.vue -------------------------------------------------------------------------------- /web_project/frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/src/main.js -------------------------------------------------------------------------------- /web_project/frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/frontend/vite.config.js -------------------------------------------------------------------------------- /web_project/production/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cross2pro/DeepSeek-OCR-Dashboard/HEAD/web_project/production/start.sh --------------------------------------------------------------------------------