Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	Upload 2 files
Browse files- .gitignore +18 -0
- requirements.txt +16 -0
    	
        .gitignore
    ADDED
    
    | @@ -0,0 +1,18 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            # 忽略資料資料夾
         | 
| 2 | 
            +
            data/
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            # 忽略 firebase 測試與機密
         | 
| 5 | 
            +
            test_firebase.py
         | 
| 6 | 
            +
            firebase-credentials.json
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            # 快取與模型檔
         | 
| 9 | 
            +
            __pycache__/
         | 
| 10 | 
            +
            *.pth
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            # 本地 env 設定
         | 
| 13 | 
            +
            readfile.env
         | 
| 14 | 
            +
            .env
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            bfg-1.14.0.jar
         | 
| 17 | 
            +
            login.py
         | 
| 18 | 
            +
            Gradio_app.py
         | 
    	
        requirements.txt
    ADDED
    
    | @@ -0,0 +1,16 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            fastapi
         | 
| 2 | 
            +
            uvicorn
         | 
| 3 | 
            +
            transformers
         | 
| 4 | 
            +
            torch
         | 
| 5 | 
            +
            pandas
         | 
| 6 | 
            +
            scikit-learn
         | 
| 7 | 
            +
            huggingface_hub
         | 
| 8 | 
            +
            pydantic
         | 
| 9 | 
            +
            aiofiles
         | 
| 10 | 
            +
            python-multipart
         | 
| 11 | 
            +
            requests
         | 
| 12 | 
            +
            tqdm
         | 
| 13 | 
            +
            lime
         | 
| 14 | 
            +
            easyocr
         | 
| 15 | 
            +
            Pillow
         | 
| 16 | 
            +
            jieba
         |