Metadata-Version: 2.1
Name: doona-taos-edge-model
Version: 0.1.9
Summary: TAOS Edge Model 예측 패키지
Home-page: 
Author: 이운용
Author-email: oncloudbros@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: annotated-types==0.7.0; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: contourpy==1.3.0; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: cycler==0.12.1; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: dill==0.3.7; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: fonttools==4.53.1; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: joblib==1.4.2; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: kiwisolver==1.4.5; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: lightgbm==4.2.0; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: matplotlib==3.9.2; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: numpy==1.26.4; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: packaging==24.1; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: pandas==2.1.3; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: pillow==10.4.0; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: pydantic-core==2.14.5; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: pydantic==2.5.2; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: pyparsing==3.1.4; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: python-dateutil==2.9.0.post0; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: pytz==2024.1; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: scikit-learn==1.3.2; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: scipy==1.14.1; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: seaborn==0.13.2; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: six==1.16.0; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: threadpoolctl==3.5.0; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: typing-extensions==4.12.2; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: tzdata==2024.1; python_version >= "3.11" and python_version < "4.0"
Requires-Dist: xgboost==2.0.3; python_version >= "3.11" and python_version < "4.0"


## 사용 방법

다음과 같이 패키지를 임포트하고 사용할 수 있습니다:

```python
from doona_taos_edge_model.model_predictor import ModelPredictor
predictor = ModelPredictor('model_uuid.dill')
```

### 테스트
```python
df = predictor.load_test_csv('sample_uuid.csv')
sample_df = predictor.get_sample(df, 1)
result = predictor.pipeline_and_predict(sample_df)
print(result)
```

### 예측 수행
```python
result = predictor.pipeline_and_predict(df)
```

### 결과 출력
```python
print(result)
```

### 리포트 출력
```python
predictor.print_report()
