Add Artifacts support, changed tags to system_tags and added user tags

Add hyper parameter sorting
Add min/max value for all time series metrics
This commit is contained in:
allegroai
2019-09-24 21:34:35 +03:00
parent 70ae090cc0
commit 4f2564d33a
62 changed files with 3408 additions and 1385 deletions

View File

@@ -143,7 +143,8 @@ def get_credentials(call):
# we return ONLY the key IDs, never the secrets (want a secret? create new credentials)
call.result.data_model = GetCredentialsResponse(
credentials=[
CredentialsResponse(access_key=c.key) for c in user.credentials
CredentialsResponse(access_key=c.key, last_used=c.last_used)
for c in user.credentials
]
)