File size: 1,941 Bytes
cdc112c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e310878
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
license: mit
language:
- ko
tags:
- image-classification
- computer-vision
- korean
- secondhand-market
- e-commerce
- ensemble
- tensorflow
- keras
datasets:
- custom
metrics:
- accuracy
model_type: ensemble
pipeline_tag: image-classification
widget:
- src: https://example.com/sample_image.jpg
  example_title: "Sample Product Image"
base_model:
- google/efficientnet-b0
- microsoft/resnet-50
- facebook/deit-base-distilled-patch16-224
library_name: tensorflow
---
# Korean Secondhand Market Classifier

## Model Overview

AI model for automatic categorization of Korean secondhand market product images.
**70.61% accuracy** achieved with 7-model ensemble system.

## Supported Categories

1. **가ꡬ** (Furniture) - beds, sofas, desks, chairs
2. **μƒν™œμš©ν’ˆ** (Household items) - kitchenware, cleaning supplies, storage
3. **μ „μžκΈ°κΈ°_λ„μ„œ** (Electronics/Books) - smartphones, laptops, books, e-books
4. **μ·¨λ―Έ_κ²Œμž„** (Hobbies/Games) - game consoles, board games, sports equipment
5. **νŒ¨μ…˜_λ·°ν‹°** (Fashion/Beauty) - clothing, shoes, cosmetics, accessories

## Performance

- **Ensemble Accuracy**: 70.61%
- **Individual Models**: 7 models (EfficientNet, ResNet50V2, DenseNet, etc.)
- **Input Size**: 224x224 RGB images

## Usage

```python
# Install dependencies
pip install fastapi uvicorn tensorflow pillow huggingface_hub

# Download and run
from huggingface_hub import snapshot_download
repo_path = snapshot_download("bihan3876/my_model")

# Run API server
import subprocess
subprocess.run(["python", f"{repo_path}/api_server.py"])
```

## File Structure

```
models/
β”œβ”€β”€ ensemble/              # Ensemble models (349MB)
β”‚   β”œβ”€β”€ EfficientNetB0_best.keras
β”‚   β”œβ”€β”€ ResNet50V2_best.keras
β”‚   └── ... (7 models)
└── serving/               # Serving models
    β”œβ”€β”€ model_optimized.tflite  # 24MB
    └── TensorFlowLiteInferenceService.java
```

## License

MIT License