aiauto-client 0.1.3__py3-none-any.whl → 0.1.4__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/core.py +8 -2
- {aiauto_client-0.1.3.dist-info → aiauto_client-0.1.4.dist-info}/METADATA +3 -10
- {aiauto_client-0.1.3.dist-info → aiauto_client-0.1.4.dist-info}/RECORD +5 -5
- {aiauto_client-0.1.3.dist-info → aiauto_client-0.1.4.dist-info}/WHEEL +0 -0
- {aiauto_client-0.1.3.dist-info → aiauto_client-0.1.4.dist-info}/top_level.txt +0 -0
aiauto/core.py
CHANGED
@@ -39,7 +39,10 @@ class AIAutoController:
|
|
39
39
|
self.dashboard_url = response.get('dashboardUrl', '')
|
40
40
|
|
41
41
|
except Exception as e:
|
42
|
-
raise RuntimeError(
|
42
|
+
raise RuntimeError(
|
43
|
+
f"Failed to initialize workspace: {e}\n"
|
44
|
+
"Please delete and reissue your token from the web dashboard at https://dashboard.aiauto.pangyo.ainode.ai"
|
45
|
+
) from e
|
43
46
|
|
44
47
|
# artifact storage
|
45
48
|
makedirs('./artifacts', exist_ok=True)
|
@@ -132,7 +135,10 @@ class StudyWrapper:
|
|
132
135
|
load_if_exists=True
|
133
136
|
)
|
134
137
|
except Exception as e:
|
135
|
-
raise RuntimeError(
|
138
|
+
raise RuntimeError(
|
139
|
+
"Failed to get study. If this persists, please delete and reissue your token "
|
140
|
+
"from the web dashboard at https://dashboard.aiauto.pangyo.ainode.ai"
|
141
|
+
) from e
|
136
142
|
return self._study
|
137
143
|
|
138
144
|
def optimize(
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: aiauto-client
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
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://aiauto.cloude.ainode.ai
|
@@ -31,15 +31,8 @@ AIAuto는 Kubernetes 기반의 분산 HPO(Hyperparameter Optimization) 시스템
|
|
31
31
|
사용자 python lib <-> Next.js 서버 사이 gRPC 통신 담당
|
32
32
|
|
33
33
|
## lib build
|
34
|
-
-
|
35
|
-
|
36
|
-
- `aiauto_client-0.1.1-py3-none-any.whl` 생성
|
37
|
-
- `aiauto_client-0.1.1.tar.gz` 생성
|
38
|
-
- `aiauto_client.egg-info` 생성
|
39
|
-
- `~/.pypirc` 파일에 설정 확인
|
40
|
-
- `uv run twine upload --repository aiauto-client dist/*`
|
41
|
-
- upload 시 pypi token 을 입력하라고 나옴, pypi 로그인 계정 설정가면 있다
|
42
|
-
|
34
|
+
- `make build push`
|
35
|
+
|
43
36
|
## 설치
|
44
37
|
- `uv add aiauto-client`
|
45
38
|
|
@@ -2,10 +2,10 @@ aiauto/__init__.py,sha256=TgD2ZvIHb7oKJb-HjUl3WfXXtuWLien0sybSy9onjL8,395
|
|
2
2
|
aiauto/_config.py,sha256=DaRTIZlph9T3iuW-Cy4fkw8i3bXB--gMtW947SLZZNs,159
|
3
3
|
aiauto/api.py,sha256=hzoVZMwKtH2EaAM1bY67grp6cenltCl8kdG8YHPegvk,1517
|
4
4
|
aiauto/constants.py,sha256=UhDCLFoPE89XrHB3SEnZR3YUuzajgugMGX80KYx_qc0,939
|
5
|
-
aiauto/core.py,sha256=
|
5
|
+
aiauto/core.py,sha256=dF-J8jxRP_FkQtxYYsrgza8OQHNzoPLN1cjYeUaqX1s,8076
|
6
6
|
aiauto/http_client.py,sha256=t1gxeM5-d5bsVoFWgaNcTrt_WWUXuMuxge9gDlEqhoA,2086
|
7
7
|
aiauto/serializer.py,sha256=_iPtEoqW8RTKOZ6UrC7CzOqoangpPYzeL7MQfIdmov8,1568
|
8
|
-
aiauto_client-0.1.
|
9
|
-
aiauto_client-0.1.
|
10
|
-
aiauto_client-0.1.
|
11
|
-
aiauto_client-0.1.
|
8
|
+
aiauto_client-0.1.4.dist-info/METADATA,sha256=g86ft1ph8ebOUxQRafbgsYvxdlHRygOxvuS3vpSbfgQ,3001
|
9
|
+
aiauto_client-0.1.4.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
10
|
+
aiauto_client-0.1.4.dist-info/top_level.txt,sha256=Sk2ctO9_Bf_tAPwq1x6Vfl6OuL29XzwMTO4F_KG6oJE,7
|
11
|
+
aiauto_client-0.1.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|