aiauto-client 0.1.18__py3-none-any.whl → 0.1.20__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {aiauto_client-0.1.18.dist-info → aiauto_client-0.1.20.dist-info}/METADATA +8 -5
- {aiauto_client-0.1.18.dist-info → aiauto_client-0.1.20.dist-info}/RECORD +4 -4
- {aiauto_client-0.1.18.dist-info → aiauto_client-0.1.20.dist-info}/WHEEL +0 -0
- {aiauto_client-0.1.18.dist-info → aiauto_client-0.1.20.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: aiauto-client
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.20
|
4
4
|
Summary: AI Auto HPO (Hyperparameter Optimization) Client Library
|
5
5
|
Author-email: AIAuto Team <ainode@zeroone.ai>
|
6
6
|
Project-URL: Homepage, https://dashboard.common.aiauto.pangyo.ainode.ai
|
@@ -67,7 +67,7 @@ for image in aiauto.RUNTIME_IMAGES:
|
|
67
67
|
```
|
68
68
|
|
69
69
|
## 실행 흐름
|
70
|
-
### token 발급
|
70
|
+
### token 발급
|
71
71
|
- `https://dashboard.common.aiauto.pangyo.ainode.ai` 에 접속하여 ainode 에 로그인 한 후
|
72
72
|
- `https://dashboard.common.aiauto.pangyo.ainode.ai/token` 으로 이동하여 aiauto 의 token 을 발급
|
73
73
|
- 아래 코드 처럼 발급한 token 을 넣어 AIAutoController singleton 객체를 초기화, OptunaWorkspace 를 활성화 시킨다
|
@@ -101,12 +101,15 @@ time.sleep(5)
|
|
101
101
|
```python
|
102
102
|
study_wrapper.get_status()
|
103
103
|
# {'study_name': 'test', 'count_active': 0, 'count_succeeded': 10, 'count_pruned': 0, 'count_failed': 0, 'count_total': 10, 'count_completed': 10, 'dashboard_url': 'https://optuna-dashboard-10f804bb-52be-48e8-aa06-9f5411ed4b0d.aiauto.pangyo.ainode.ai', 'last_error': '', 'updated_at': '2025-09-01T11:31:49.375Z'}
|
104
|
-
while study_wrapper.get_status()['count_completed']
|
105
|
-
sleep(10) # 10
|
104
|
+
while study_wrapper.get_status()['count_completed'] < study_wrapper.get_status()['count_total']:
|
105
|
+
time.sleep(10) # 10초마다 확인
|
106
106
|
```
|
107
107
|
- best trial 을 가져오는 법
|
108
108
|
```python
|
109
|
-
|
109
|
+
# 진짜 optuna study 를 받아옴
|
110
|
+
real_study = study_wrapper.get_study()
|
111
|
+
best_trial = real_study.best_trial
|
112
|
+
print(best_trial.params)
|
110
113
|
```
|
111
114
|
|
112
115
|
## Jupyter Notebook 사용 시 주의사항
|
@@ -4,7 +4,7 @@ aiauto/constants.py,sha256=rBibGOQHHrdkwaai92-3I8-N0cu-B4CoCoQbG9-Cl8k,821
|
|
4
4
|
aiauto/core.py,sha256=z46oRcuwRR4xfqKbbokqB13vo29ayLxjZeGi8zAKNuA,10306
|
5
5
|
aiauto/http_client.py,sha256=v_nPdb-2tIeH1XrOYqzMGvFfXLKEDbQoSaQYPsB0Hik,2587
|
6
6
|
aiauto/serializer.py,sha256=BJmeq6uCD9D2_6bXu_sMBQLSsXCUMIMM10iX923DTXE,2749
|
7
|
-
aiauto_client-0.1.
|
8
|
-
aiauto_client-0.1.
|
9
|
-
aiauto_client-0.1.
|
10
|
-
aiauto_client-0.1.
|
7
|
+
aiauto_client-0.1.20.dist-info/METADATA,sha256=Y5yipDItVcPwbE0lzI7FwKbwJ8CXJnR1AW4Q5XpH1Gw,25746
|
8
|
+
aiauto_client-0.1.20.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
9
|
+
aiauto_client-0.1.20.dist-info/top_level.txt,sha256=Sk2ctO9_Bf_tAPwq1x6Vfl6OuL29XzwMTO4F_KG6oJE,7
|
10
|
+
aiauto_client-0.1.20.dist-info/RECORD,,
|
File without changes
|
File without changes
|