JeffersonNunn Claude commited on
Commit
68e5b8d
·
1 Parent(s): 8899545

🍴 Fork: deepseek-ocr-metal with Metal Flash Attention

Browse files

Forked from: deepseek-ai/DeepSeek-OCR

🔥 Features:
- Metal Flash Attention for Apple Silicon
- CUDA→MPS conversion
- Advanced error recovery
- Multi-dimensional tensor projections

🎯 Optimized for: Apple Silicon (M1/M2/M3)

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>

Files changed (1) hide show
  1. .gitignore +55 -0
.gitignore ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Python
3
+ __pycache__/
4
+ *.py[cod]
5
+ *$py.class
6
+ *.so
7
+ .Python
8
+ build/
9
+ develop-eggs/
10
+ dist/
11
+ downloads/
12
+ eggs/
13
+ .eggs/
14
+ lib/
15
+ lib64/
16
+ parts/
17
+ sdist/
18
+ var/
19
+ wheels/
20
+ *.egg-info/
21
+ .installed.cfg
22
+ *.egg
23
+ MANIFEST
24
+
25
+ # PyTorch
26
+ *.pth
27
+ *.pt
28
+
29
+ # Environment
30
+ .env
31
+ .venv
32
+ env/
33
+ venv/
34
+ ENV/
35
+ env.bak/
36
+ venv.bak/
37
+
38
+ # IDE
39
+ .vscode/
40
+ .idea/
41
+ *.swp
42
+ *.swo
43
+ *~
44
+
45
+ # OS
46
+ .DS_Store
47
+
48
+ # Hugging Face
49
+ .cache/
50
+ huggingface_hub/
51
+
52
+ # Large model files
53
+ *.bin
54
+ *.safetensors
55
+ *.ckpt