From 1b927c726ef2f216efc1c92a09c395c3d0ab8b21 Mon Sep 17 00:00:00 2001 From: Zerohertz Date: Wed, 29 Nov 2023 19:36:44 +0900 Subject: [PATCH 1/2] :hammer: Chore: Jenkins Credentials --- Jenkinsfile | 34 ++++++++++++++++++-------------- test/test_api.py | 46 ++++++++++++++++++++++++++++++++++++++++---- test/test_logging.py | 30 +++++++++++++++++++++++++---- 3 files changed, 88 insertions(+), 22 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 27371752..329f257e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -166,21 +166,26 @@ spec: } } steps { - script { - try { - def startTime = System.currentTimeMillis() - setBuildStatus("Test...", "PENDING", "$STAGE_NAME") - container("python") { - sh "pip install pytest" - sh "pytest" + withCredentials([string(credentialsId: "OpenAI_Token", variable: "OPENAI_TOKEN"), + string(credentialsId: "Discord_Webhook_URL", variable: "DISCORD_WEBHOOK_URL"), + string(credentialsId: "Slack_Webhook_URL", variable: "SLACK_WEBHOOK_URL"), + string(credentialsId: "Slack_Bot_Token", variable: "SLACK_BOT_TOKEN")]) { + script { + try { + def startTime = System.currentTimeMillis() + setBuildStatus("Test...", "PENDING", "$STAGE_NAME") + container("python") { + sh "pip install pytest" + sh "pytest" + } + def endTime = System.currentTimeMillis() + def DURATION = (endTime - startTime) / 1000 + setBuildStatus("Successful in ${DURATION}s", "SUCCESS", "$STAGE_NAME") + } catch (Exception e) { + def STAGE_ERROR_MESSAGE = e.getMessage().split("\n")[0] + setBuildStatus(STAGE_ERROR_MESSAGE, "FAILURE", "$STAGE_NAME") + throw e } - def endTime = System.currentTimeMillis() - def DURATION = (endTime - startTime) / 1000 - setBuildStatus("Successful in ${DURATION}s", "SUCCESS", "$STAGE_NAME") - } catch (Exception e) { - def STAGE_ERROR_MESSAGE = e.getMessage().split("\n")[0] - setBuildStatus(STAGE_ERROR_MESSAGE, "FAILURE", "$STAGE_NAME") - throw e } } } @@ -316,6 +321,7 @@ spec: setBuildStatus("Deploy...", "PENDING", "$STAGE_NAME") def PACKAGE_VERSION = "" container("python") { + sh "pip install .'[all]'" PACKAGE_VERSION = sh( script: 'python -c "import zerohertzLib; print(zerohertzLib.__version__)"', returnStdout: true diff --git a/test/test_api.py b/test/test_api.py index fb53e2d7..aac8a5cb 100644 --- a/test/test_api.py +++ b/test/test_api.py @@ -2,24 +2,62 @@ import zerohertzLib as zz -WEBHOOK = "https://discord.com/api/webhooks/1174193014923591791/vBPMpb0otKQH0lflp169u0a-8gJPZyDg17SPEsxKDDlmv3PMFl4eNrt3KWQgUmnWpYJ9" +OPENAI_TOKEN = os.environ.get("OPENAI_TOKEN") +DISCORD_WEBHOOK_URL = os.environ.get("DISCORD_WEBHOOK_URL") +SLACK_WEBHOOK_URL = os.environ.get("SLACK_WEBHOOK_URL") +SLACK_BOT_TOKEN = os.environ.get("SLACK_BOT_TOKEN") + tmp = os.path.dirname(__file__) data = os.path.join(tmp, "data") def test_discord_message(): - discord = zz.api.Discord(WEBHOOK) + discord = zz.api.Discord(DISCORD_WEBHOOK_URL) for response in discord.message("Testing..."): assert response.status_code == 204 def test_discord_messages(): - discord = zz.api.Discord(WEBHOOK) + discord = zz.api.Discord(DISCORD_WEBHOOK_URL) for response in discord.message("Testing..." * 200): assert response.status_code == 204 def test_discord_image(): - discord = zz.api.Discord(WEBHOOK) + discord = zz.api.Discord(DISCORD_WEBHOOK_URL) response = discord.image(f"{data}/test.jpg") assert response.status_code == 200 + + +def test_slack_webhook(): + slack = zz.api.SlackWebhook( + SLACK_WEBHOOK_URL, "test", name="Test Webhook", icon_emoji="wrench" + ) + response = slack.message("Testing...") + assert response.status_code == 200 + + +def test_slack_bot_message(): + slack = zz.api.SlackBot( + SLACK_BOT_TOKEN, "test", name="Test Bot", icon_emoji="hammer" + ) + response = slack.message("Testing...") + assert response.status_code == 200 + + +def test_slack_bot_file(): + slack = zz.api.SlackBot( + SLACK_BOT_TOKEN, "test", name="Test Bot", icon_emoji="hammer" + ) + response = slack.file(f"{data}/test.jpg") + assert response.status_code == 200 + + +def test_openai(): + client = zz.api.OpenAI(OPENAI_TOKEN) + response = client("오늘 기분이 어때? 1줄로 대답해줘.", model="gpt3") + assert isinstance(response, str) + slack = zz.api.SlackBot( + SLACK_BOT_TOKEN, "test", name="Test Bot", icon_emoji="hammer" + ) + slack.message(response) diff --git a/test/test_logging.py b/test/test_logging.py index d0dc5602..7382e283 100644 --- a/test/test_logging.py +++ b/test/test_logging.py @@ -1,6 +1,10 @@ +import os + import zerohertzLib as zz -WEBHOOK = "https://discord.com/api/webhooks/1174193014923591791/vBPMpb0otKQH0lflp169u0a-8gJPZyDg17SPEsxKDDlmv3PMFl4eNrt3KWQgUmnWpYJ9" +DISCORD_WEBHOOK_URL = os.environ.get("DISCORD_WEBHOOK_URL") +SLACK_WEBHOOK_URL = os.environ.get("SLACK_WEBHOOK_URL") +SLACK_BOT_TOKEN = os.environ.get("SLACK_BOT_TOKEN") def test_logging(): @@ -13,10 +17,28 @@ def test_logging(): def test_logging_discord(): + log = zz.logging.Logger("TEST_2", logger_level=20, discord=DISCORD_WEBHOOK_URL) + log.debug("debug") + log.info("info") + log.warning("warning") + log.error("error") + log.critical("critical") + + +def test_logging_slack_webhook(): + log = zz.logging.Logger( + "TEST_3", logger_level=20, slack=SLACK_WEBHOOK_URL, channel="test" + ) + log.debug("debug") + log.info("info") + log.warning("warning") + log.error("error") + log.critical("critical") + + +def test_logging_slack_bot(): log = zz.logging.Logger( - "TEST_2", - logger_level=20, - discord=WEBHOOK, + "TEST_4", logger_level=20, slack=SLACK_BOT_TOKEN, channel="test" ) log.debug("debug") log.info("info") From 4f117dbf073ecd2a8044e0ff7e9d0390bfd060bb Mon Sep 17 00:00:00 2001 From: Zerohertz Date: Wed, 29 Nov 2023 10:40:13 +0000 Subject: [PATCH 2/2] :memo: Docs: Build Sphinx (#129) --- docs/_sources/release/v0.5.md.txt | 19 +++++++++++++++++++ docs/release/v0.5.html | 18 ++++++++++++++++-- docs/searchindex.js | 2 +- sphinx/source/release/v0.5.md | 19 +++++++++++++++++++ 4 files changed, 55 insertions(+), 3 deletions(-) diff --git a/docs/_sources/release/v0.5.md.txt b/docs/_sources/release/v0.5.md.txt index fbb14eb9..d403246c 100644 --- a/docs/_sources/release/v0.5.md.txt +++ b/docs/_sources/release/v0.5.md.txt @@ -2,6 +2,25 @@ ## v0.5.0 +

[v0.5.0] Chore Update (#129)

+ +```{admonition} Release Date +:class: tip + +2023/11/29 +``` + +

+chore +release/chore +

+ + +

Chore

+ ++ `api` submodule의 PyTest를 위한 Jenkins의 credentials 추가 ++ `GitHub` stage의 package 전체 설치 code 추가 +

[v0.5.0] Release (#127)

```{admonition} Release Date diff --git a/docs/release/v0.5.html b/docs/release/v0.5.html index cba8d1dc..70577a91 100644 --- a/docs/release/v0.5.html +++ b/docs/release/v0.5.html @@ -17,10 +17,10 @@ - + - + @@ -257,6 +257,20 @@

v0.5#

v0.5.0#

+

[v0.5.0] Chore Update (#129)

+
+

Release Date

+

2023/11/29

+
+

+chore +release/chore +

+

Chore

+
    +
  • api submodule의 PyTest를 위한 Jenkins의 credentials 추가

  • +
  • GitHub stage의 package 전체 설치 code 추가

  • +

[v0.5.0] Release (#127)

Release Date

diff --git a/docs/searchindex.js b/docs/searchindex.js index 5bba5739..ec88fbbb 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["cicd", "index", "release", "release/v0.1", "release/v0.2", "release/v0.3", "release/v0.4", "release/v0.5", "zerohertzLib", "zerohertzLib.algorithm", "zerohertzLib.api", "zerohertzLib.logging", "zerohertzLib.mlops", "zerohertzLib.monitoring", "zerohertzLib.plot", "zerohertzLib.util", "zerohertzLib.vision"], "filenames": ["cicd.md", "index.md", "release.md", "release/v0.1.md", "release/v0.2.md", "release/v0.3.md", "release/v0.4.md", "release/v0.5.md", "zerohertzLib.md", "zerohertzLib.algorithm.md", "zerohertzLib.api.md", "zerohertzLib.logging.md", "zerohertzLib.mlops.md", "zerohertzLib.monitoring.md", "zerohertzLib.plot.md", "zerohertzLib.util.md", "zerohertzLib.vision.md"], "titles": ["CI/CD Pipelines", "<no title>", "Release Notes", "v0.1", "v0.2", "v0.3", "v0.4", "v0.5", "zerohertzLib", "zerohertzLib.algorithm", "zerohertzLib.api", "zerohertzLib.logging", "zerohertzLib.mlops", "zerohertzLib.monitoring", "zerohertzLib.plot", "zerohertzLib.util", "zerohertzLib.vision"], "terms": {"black": [0, 4, 15], "flake8": [0, 6], "pylint": [0, 6], "setuptool": [0, 3], "pytest": [0, 3, 4, 6], "stage": [0, 4], "condit": [0, 15], "1": [0, 1, 2, 9, 10, 12, 13, 14, 15, 16], "setup": 0, "push": [0, 4], "2": [0, 1, 2, 9, 12, 14, 15, 16], "merg": [0, 4], "from": [0, 4], "doc": [0, 3, 4, 5, 6, 10, 15], "build": [0, 3, 4], "page": [0, 1], "3": [0, 1, 2, 9, 12, 14, 15, 16], "lint": [0, 6], "master": [0, 4], "pr": [0, 3, 4, 10], "except": [0, 5], "4": [0, 1, 2, 9, 10, 14, 16], "5": [0, 1, 2, 9, 14, 15, 16], "test": [0, 4, 5, 6, 10, 15, 16], "6": 0, "7": [0, 9, 12, 16], "deploi": [0, 4], "zerohertz": [0, 1, 10, 15], "The": 0, "i": [0, 14, 15, 16], "when": 0, "ar": 0, "function": 0, "chang": 0, "result": 0, "differ": 0, "outcom": 0, "commit": 0, "messag": [0, 10], "pars": 0, "check": 0, "format": [0, 3, 5, 6, 16], "python": [0, 10, 12, 15], "code": [0, 3, 6], "instal": [0, 1, 7], "depend": 0, "packag": [0, 15], "do": 0, "creat": [0, 10], "includ": 0, "gener": 0, "If": 0, "can": 0, "pypi": [0, 5], "util": [0, 1, 4, 5, 6, 8, 16], "assigne": [0, 10], "contain": 0, "event": 0, "titl": [0, 4, 10, 14, 15], "bug": 0, "fix": [0, 4, 10], "style": [0, 3, 4, 5, 6], "bodi": [0, 4, 10], "\uc218\uc815": [0, 3, 4, 5, 6], "labelstoadd": 0, "basebranch": 0, "headbranch": 0, "startswith": 0, "releas": [0, 1, 10, 15], "file": [0, 10, 14, 15, 16], "filenam": [0, 6, 15, 16], "workflow": 0, "zerohertzlib": [0, 1, 4, 5, 7], "module_nam": 0, "__init__": [0, 3, 4], "feat": [0, 4], "built": 0, "via": 0, "": [1, 12, 15, 16], "librari": 1, "sudo": 1, "apt": 1, "python3": [1, 15], "opencv": 1, "y": [1, 15], "pip": [1, 7], "api": [1, 3, 4, 5, 6, 7, 8], "mlop": [1, 3, 4, 7, 8], "all": [1, 7], "import": [1, 3], "zz": [1, 6, 9, 10, 11, 12, 13, 14, 15, 16], "algorithm": [1, 3, 6, 8], "log": [1, 3, 4, 6, 8], "monitor": [1, 3, 4, 8], "plot": [1, 3, 4, 5, 6, 8], "vision": [1, 3, 4, 5, 6, 8, 15], "note": [1, 4, 5, 10], "v0": [1, 2, 15], "ci": [1, 3, 4], "cd": [1, 4], "pipelin": [1, 3, 4], "jenkin": [1, 4], "github": [1, 3, 4, 6, 8, 10], "action": [1, 4], "index": [1, 3, 9, 15, 16], "modul": [1, 15], "search": [1, 9, 10], "42": 3, "2023": [3, 4, 5, 6, 7, 11], "11": [3, 4, 5, 6, 7, 11], "14": [3, 4], "featur": [3, 4, 5, 6], "scatter": [3, 8, 14], "chart": 3, "\uc2dc\uac01\ud654": [3, 4, 5, 13, 14, 16], "\ud568\uc218": [3, 4, 5, 6, 9, 14, 15, 16], "\ucd94\uac00": [3, 4, 5, 6], "pie": [3, 8, 13, 14], "chart\uc758": [3, 4], "label\uc5d0": 3, "\uc18c\uc218": [3, 9], "\uc790\ub9ac\uac00": 3, "\uc0dd\uae30\ub294": 3, "\ubb38\uc81c": [3, 4], "\ud574\uacb0": [3, 4], "resolv": [3, 4, 5, 6], "40": [3, 14, 16], "cv2": [3, 15, 16], "\uc758\uc874\uc131\uc774": 3, "\uc124\uce58\ub418\uc9c0": 3, "\uc54a\uc740": 3, "\uacbd\uc6b0\uc5d0\ub3c4": 3, "\uc0ac\uc6a9\ud560": [3, 6, 10, 14], "\uc218": [3, 5, 6, 7, 10, 11, 13, 14, 15, 16], "\uc788\ub3c4\ub85d": [3, 5, 6, 7], "\ubcc0\uacbd": [3, 4, 5, 6, 7, 16], "image\uc758": [3, 4, 5, 16], "\uc804\ud6c4": 3, "\ube44\uad50\ub97c": 3, "\uc704\ud55c": [3, 4, 6, 9, 10, 12, 15], "before_aft": [3, 8, 16], "\uac1c\ubc1c": [3, 4, 5, 6], "\uc5ec\ub7ec": [3, 5, 14, 16], "image\ub97c": [3, 5, 6, 16], "\ud55c\ubc88\uc5d0": 3, "\uc694\uc57d\ud574": 3, "\ubcfc": 3, "\uc788\ub294": [3, 5, 6, 10, 11, 13, 14], "grid": [3, 6, 8, 16], "39": 3, "chore": [3, 4, 5, 6, 7], "issu": [3, 4, 10], "\ubc0f": [3, 4, 5, 6, 10, 14, 15, 16], "pr\uc758": [3, 4], "tag": 3, "\uc0dd\uc131": [3, 4, 5, 6, 10, 15, 16], "41": [3, 11], "35": [3, 14], "13": 3, "fast": [3, 9], "fourier": [3, 9], "transform": [3, 9], "fft": [3, 8, 9], "\ub97c": [3, 4, 5, 6, 9, 15, 16], "\uc218\ud589\ud558\ub294": [3, 6], "submodul": [3, 4], "\uc774\ub984": [3, 10, 11, 12, 14, 15, 16], "\uc785\ub825": [3, 5, 6, 9, 10, 12, 14, 15, 16], "\uacbd\ub85c\uc758": 3, "\uc6a9\ub7c9\uc744": [3, 13], "chart\ub85c": [3, 13, 14], "\uc2dc\uac01\ud654\ud558\ub294": [3, 4, 16], "storag": [3, 8, 13], "jenkins\uc758": 3, "trigger": [3, 4], "34": 3, "sphinx": [3, 4, 6, 10], "\ub0b4": [3, 4, 5, 6, 12, 14, 15, 16], "exampl": [3, 6, 9, 10, 11, 12, 13, 14, 15, 16], "32": 3, "12": 3, "logger": [3, 6, 8, 11], "\uc758": [3, 4, 5, 6, 10, 11, 14, 16], "\ucd9c\ub825": [3, 10, 12, 14, 16], "\uc591\uc2dd": 3, "\uac00": [3, 10], "discord": [3, 4, 8, 10, 11], "webhook\uc744": [3, 10], "\uc774\uc6a9\ud560": [3, 6], "\uc788\uac8c": [3, 5], "\uae30\ud0c0": 3, "\ubb38\uc11c\uc758": [3, 4], "\uc624\ud0c0": [3, 5, 6], "26": 3, "07": [3, 11], "openai": [3, 5, 6, 8, 10], "package\uc758": 3, "update\ub85c": 3, "\uc758\uc874\uc131": [3, 4], "error": [3, 10, 11], "\ubc1c\uc0dd": [3, 4, 10], "25": [3, 16], "triton": [3, 12], "infer": [3, 12], "server\uc758": [3, 12], "client\ub97c": 3, "\uc190\uc27d\uac8c": 3, "class": [3, 4, 5, 6, 10, 11, 12, 15, 16], "tritonclienturl": [3, 8, 12], "tritonclientk8": [3, 8, 12], "\ubcc0\uc218\uba85": [3, 4, 5, 6], "28": [3, 6, 12], "shphinx": 3, "\uc601\ubb38": 3, "\uc124\uc815": [3, 6], "\uba85\uc2dc": 3, "23": [3, 6], "06": 3, "horizont": 3, "bar": [3, 14], "gif": [3, 16], "\ubcc0\ud658\uc744": 3, "img2gif": [3, 6, 8, 16], "vid2gif": [3, 6, 8, 16], "22": [3, 5, 6], "\uacfc\uc815\uc5d0\uc11c": 3, "\uc124\uce58": 3, "codaci": 3, "20": [3, 4, 5, 10, 14, 16], "\uaddc\uaca9\ud654\ub41c": 3, "\ub370\uc774\ud130\uc758": 3, "\uc2dc\uac01\ud654\ub97c": 3, "hist": [3, 8, 14], "url": [3, 10, 11, 12, 15], "updat": [3, 4, 5, 6, 13], "16": [3, 4], "templat": [3, 4], "\ubb38\uc11c": [3, 4, 5, 6], "\uc2dc": [3, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16], "branch": [3, 4], "\uc774\ub984\uc744": [3, 6, 15, 16], "parsing\ud558\uc5ec": 3, "\ubcc0\uacbd\ud558\ub3c4\ub85d": 3, "15": [3, 4, 13, 14, 16], "refactor": [3, 4, 5, 6], "openai\uc758": [3, 10], "gpt": [3, 10], "5\ub97c": 3, "\uc0ac\uc6a9\ud558\uae30": [3, 4, 10, 15], "api_kei": [3, 10], "webhook\uc5d0": 3, "\uba54\uc2dc\uc9c0\ub97c": 3, "\uc804\uc1a1\ud558\ub294": 3, "send_discord_messag": 3, "rst": [3, 4], "\uc5d0": [3, 4, 6, 9, 15, 16], "readm": 3, "md": [3, 4, 15], "\ub0b4\uc6a9": 3, "\uad6c\uc870": [3, 5], "05": 3, "df": [3, 8, 9], "bf": [3, 8, 9], "soe": [3, 8, 9], "commitmessag": 3, "\uc815\uc758\ud558\ub294": 3, "03": [3, 12], "py": [3, 15], "\ubc84\uc804": [3, 5], "\uc218\ub3d9": 3, "\uc5c5\ub370\uc774\ud2b8": 3, "insecure\ud55c": 3, "jenkins\uc5d0\uc11c": 3, "\ud6c4": [3, 6, 10, 15, 16], "\ubcc0\uacbd\uc0ac\ud56d\uc774": 3, "\uc874\uc7ac\ud558\uc9c0": [3, 15], "\uc54a\ub294": [3, 15], "\uac83\uc5d0": 3, "\ub300\ud55c": [3, 4, 5, 6, 10, 16], "\uc608\uc678": [3, 4, 5], "\ucc98\ub9ac": [3, 4, 10, 16], "legaci": [3, 6], "\uad6c\ucd95": [3, 5, 15, 16], "\ucd08\uae30": 3, "90": [4, 12], "jenkin\uc758": 4, "\uad6c\ub3d9": 4, "\uc870\uac74": [4, 6, 15], "notes\uc758": 4, "\uc6d0\ubcf8": [4, 16], "\ud30c\uc77c": 4, "sourc": [4, 10], "label": [4, 6, 10, 14, 15, 16], "control": 4, "83": 4, "\uc81c\uc791": 4, "\ud568\uc218\uc758": 4, "\uc77c\ubd80": 4, "logic": 4, "cpu\uc758": [4, 13], "\uc0ac\uc6a9\ub960\uc744": 4, "cpu": [4, 8, 13], "51": 4, "gpu\uc758": [4, 13], "\uc0ac\uc6a9\ub960": 4, "\uba54\ubaa8\ub9ac": 4, "\uc810\uc720\uc728\uc744": 4, "gpu_usag": [4, 8, 13], "\uc640": [4, 6, 15, 16], "gpu_memori": [4, 8, 13], "line": [4, 13, 14, 15], "xlim": [4, 14], "ylim": [4, 14], "ncol": [4, 14], "marker": 4, "index\ub97c": 4, "\ub118\ub294": 4, "case\ub97c": 4, "\ubc29\uc9c0\ud558\uae30": 4, "rule": 4, "\ud0a4\uc6cc\ub4dc\ub97c": 4, "\ud1b5\ud574": [4, 5, 10, 15, 16], "l": 4, "\uae30\ubc18": 4, "\uad00\ub9ac": 4, "\ubc29\ubc95\ub860": [4, 5], "\ubb38\uc11c\ud654": 4, "81": 4, "19": 4, "\ucf54\ub4dc": 4, "\ubb38\uc11c\uac00": 4, "\uc544\ub2cc": 4, "\uc8fc\uc11d": 4, "79": [4, 14], "type": [4, 9, 10, 12, 13, 14, 15, 16], "\ub300\uc2e0": 4, "isinst": 4, "\uc0ac\uc6a9": [4, 6, 10], "80": [4, 12], "badge\uc758": 4, "href": 4, "77": 4, "18": 4, "\ud45c\uc2dc\ub418\ub294": 4, "\uae4a\uc774": [4, 15], "stage\uc758": 4, "pipeline\uc758": 4, "\uc124\uba85\uae00": 4, "sitemap": 4, "xml": 4, "add": 4, "logo": [4, 5], "74": 4, "17": 4, "73": [4, 14], "\ud45c": 4, "\uc124\uba85": [4, 5, 6], "\uae00": 4, "70": [4, 16], "69": 4, "json": [4, 5, 6, 8, 15, 16], "\ud615\uc2dd": [4, 15, 16], "\ud30c\uc77c\uc744": 4, "\uc77d\uace0": [4, 15], "jsondir": [4, 8, 15, 16], "\uac12\uc5d0": [4, 15], "\ub530\ub77c": [4, 13, 15, 16], "data\ub97c": [4, 6, 15, 16], "\uad6c\ucd95\ud558\ub294": [4, 15], "makedata": [4, 5, 8, 15], "\uac1d\uccb4": [4, 15], "csv": [4, 15], "tsv": [4, 15], "\uc791\uc131\ud558\ub294": [4, 15], "write_csv": [4, 8, 15], "write_json": [4, 8, 15], "controller\uc5d0": 4, "\uc81c\ubaa9": [4, 14], "\uc774\uc0c1": 4, "\ubc1c\uacac": 4, "\uc624\ub958": [4, 6], "\ub370\uc774\ud130": [4, 10, 14, 15], "hint": 4, "\ub204\ub77d": 4, "sphinxext": 4, "opengraph": 4, "\ud1b5\ud55c": [4, 5, 6], "meta": 4, "data": [4, 5, 10, 14, 15, 16], "67": 4, "notes\uc5d0\uc11c": 4, "title\uc774": 4, "\uae68\uc9c0\ub294": 4, "68": 4, "65": [4, 15], "\ud65c\uc6a9\uc744": 4, "62": 4, "note\uc758": 4, "\ubb38\uc11c\ud654\ub97c": 4, "method": [4, 5, 6, 15], "api\ub97c": [4, 10], "\uc790\ub3d9": 4, "63": 4, "\ube4c\ub4dc": 4, "61": 4, "59": 4, "theme": 4, "\ubcc0\uacbd\uc5d0": 4, "\ub530\ub978": [4, 13, 14, 15, 16], "56": 4, "\uac1d\uccb4\ud654": 4, "imag": [4, 5, 10, 12, 16], "\uc804\uc1a1": [4, 10], "50": [4, 14, 16], "\uc801\uc6a9": [4, 10, 11], "bbox": [4, 5, 6, 8, 16], "mask": [4, 5, 6, 8, 16], "text": [4, 5, 6, 8, 10, 16], "49": [4, 14], "bbox\uc5d0": [4, 5], "\uc804\ud658": 4, "xyxy2xywh": [4, 5], "xywh2xyxi": [4, 5], "resolut": 4, "\uac10\uc18c": 4, "pil": [4, 16], "57": 4, "\uac1d\uccb4\uc758": 4, "camel": [4, 6], "case": [4, 5], "numpi": [4, 5, 6, 16], "\ub354": [4, 11], "\uc0c1\uc138\ud55c": 4, "\uc791\uc131": [4, 15], "53": [4, 14], "\uac80\uc218": 4, "54": [4, 14, 15], "\ub09c\uc7a1\ud55c": 4, "\uc81c\uac70": 4, "46": 4, "\uae30\ub2a5": [4, 6], "45": 4, "105": 5, "seaborn": 5, "package\ub97c": 5, "\uc0c9\uc0c1\uc744": 5, "\uac04\ud3b8\ud558\uac8c": 5, "\ubd88\ub7ec\uc62c": [5, 15], "color": [5, 8, 14, 15, 16], "\ubaa8\ub4e0": 5, "graph\ub4e4\uc758": 5, "\uc800\uc7a5": [5, 13, 14, 16], "\ubc29\uc2dd\uc744": 5, "_save": 5, "\ud568\uc218\ub85c": 5, "\ud68d\uc77c\ud654": [5, 6], "\ubc29\ubc95\uc744": 5, "\uc815\uc758\ud560": 5, "\ud568\uc218\uac00": 5, "\ub2e8\uc77c": [5, 14, 16], "poli": [5, 6, 15, 16], "\uc720\ud615\uc5d0\ub3c4": 5, "\uc2dc\uac01\ud654\ud560": [5, 13], "\ud655\uc7a5": 5, "\uc785\ub825\ub41c": [5, 6, 15], "\uc774\ubbf8\uc9c0\ub4e4\uc744": 5, "\uac00\ub85c\ub85c": 5, "\ub098\uc5f4\ud558\ub294": 5, "vert": [5, 6, 8, 16], "\ud30c\uc77c\uacfc": 5, "\ud568\uaed8": 5, "jsonimageload": [5, 6, 8, 16], "\uc9c0\uc810\ub4e4\uc758": [5, 16], "\uc88c\ud45c": [5, 6, 16], "\uc874\uc7ac": [5, 15, 16], "\uc5ec\ubd80": [5, 10, 14, 15, 16], "\ud655\uc778": [5, 16], "isptsinpoli": 5, "submodule\uc758": 5, "bgra": [5, 6, 16], "\uc785\ub825\uc5d0": 5, "\ub2e8\uc21c": 5, "\uc73c\ub85c": [5, 15], "\ud45c\uae30\ud588\ub358": 5, "\ucc98\ub9ac\uc758": 5, "103": 5, "\ub0b4\ubd80": [5, 16], "\uc608\uc2dc": 5, "\ud55c\uae00": 5, "\uc601\uc5b4\uc758": 5, "100": [5, 13, 15, 16], "21": [5, 11], "\ud568\uc218\uc5d0": [5, 6], "\ub300\ud574": [5, 6, 10, 16], "\ub370\uc774\ud130\ub97c": [5, 14], "\ubc1b\uc744": 5, "\ubcc0\ud658": [5, 6, 9, 16], "cwh2xyxi": [5, 8, 16], "cwh2poli": [5, 8, 16], "xyxy2cwh": [5, 8, 16], "xyxy2poli": [5, 8, 16], "poly2cwh": [5, 8, 16], "poly2xyxi": [5, 8, 16], "\ub2e4\uac01\ud615": [5, 16], "\uc88c\ud45c\ub97c": [5, 16], "\ubc30\uc5f4\ub85c": 5, "\ubcc0\ud658\ud558\ub294": [5, 6, 16], "poly2mask": [5, 8, 16], "\ub0b4\uc5d0\uc11c": [5, 16], "\uc9c0\uc815\ud55c": [5, 6, 13, 16], "\uc81c\uc678\ud55c": [5, 16], "\ubd80\ubd84\uc744": [5, 16], "\ud22c\uba85\ud654\ud558\uace0": 5, "\uc120\ud0dd\uc801\uc73c\ub85c": 5, "crop": [5, 16], "\ud560": [5, 6, 7, 16], "cutout": [5, 8, 15, 16], "alpha": [5, 16], "channel\uc774": 5, "\uc874\uc7ac\ud558\ub294": [5, 6, 9, 13, 15, 16], "\uc6d0\ud558\ub294": [5, 6, 16], "\uc704\uc5d0": [5, 16], "\ud22c\uba85\ub3c4\ub97c": [5, 16], "\ud3ec\ud568\ud558\uc5ec": [5, 16], "\ubcd1\ud569\ud558\ub294": 5, "past": [5, 6, 8, 15, 16], "\uc608\uc81c": 5, "99": 5, "licens": 5, "classifi": 5, "x0": [5, 16], "y0": [5, 16], "x1": [5, 16], "y1": [5, 16], "\ud45c\uae30": [5, 14], "\uc21c\uc11c": [5, 9], "badg": 5, "\ub780\uc5d0": 5, "cwh": [5, 16], "xyxi": [5, 16], "\ud3ed": 5, "97": 5, "csv\ub97c": 5, "\uc77d\uc5b4\uc624\ub294": [5, 6], "\uc77c\ubc18\ud654": 5, "pypi\uc5d0": 5, "e": 5, "mail": 5, "95": 5, "pypi\uc758": 5, "93": 5, "caption": 5, "content": 5, "\uc0ad\uc81c": [5, 15], "125": 6, "29": [6, 7], "data\uc5d0": 6, "\ud45c\ub97c": 6, "\uc0dd\uc131\ud558\uace0": 6, "image\ub85c": [6, 16], "tabl": [6, 8, 14], "labelstudio2labelm": [6, 8, 16], "123": [6, 14], "binari": [6, 9], "search\ub97c": 6, "bisect_right": [6, 8, 9], "bisect_left": [6, 8, 9], "\ud638\ucd9c": [6, 10, 12, 16], "prompt\ub97c": 6, "slack": [6, 10, 11], "webhook": [6, 10, 11], "bot\uc744": [6, 10], "slackwebhook": [6, 8, 10], "slackbot": [6, 8, 10], "class\uac00": 6, "slack\uc744": 6, "\uacbd\ub85c": [6, 10, 13, 15, 16], "file\ub4e4\uc758": [6, 15, 16], "\ud655\uc7a5\uc790\ub97c": [6, 15], "\ud0d0\uc0c9\ud558\ub294": 6, "find_ext": [6, 8, 15], "font_siz": [6, 14, 16], "\uc9c0\uc815\ud560": [6, 16], "studio\ub85c": [6, 16], "annotation\ub41c": 6, "yolo": [6, 12, 16], "labelm": [6, 16], "format\uc73c\ub85c": [6, 16], "labelstudio2yolo": [6, 8, 16], "\ub300\uc18c\ubb38\uc790": 6, "\ud45c\uae30\ubc95": 6, "121": 6, "27": [6, 14, 16], "is_pts_in_poli": [6, 8, 16], "box": [6, 15, 16], "\ud45c\ud604": 6, "119": 6, "24": 6, "image\uc5d0": [6, 16], "threshold": [6, 13, 16], "\ubbf8\ub9cc\uc758": [6, 16], "pixel\ub4e4\uc744": [6, 16], "\ud22c\uba85\ud654\ud558\ub294": 6, "transpar": [6, 8, 16], "117": [6, 14], "\ubc30\uc5f4\uc744": 6, "\uc785\ub825\uc73c\ub85c": 6, "\ubc1b\uc740": 6, "\ud568\uc218\ub4e4\uc5d0": 6, "list": [6, 9, 10, 12, 14, 15, 16], "\ud5c8\uc6a9": 6, "\ud22c\uba85\ub3c4": [6, 16], "\uc870\uc808\uacfc": 6, "gaussian": [6, 16], "blur\ub97c": 6, "\uc790\uc5f0\uc2a4\ub7ec\uc6b4": [6, 16], "\ud569\uc131": 6, "\uc0c9\uc0c1": 6, "actions\ub97c": 6, "\uaddc\uce59": 6, "115": 6, "__len__": [6, 15, 16], "\ub2e4\uac01\ud615\uc758": [6, 16], "\uba74\uc801": [6, 16], "\ub300\ube44": [6, 16], "\ube44\uc728\uc744": [6, 16], "\uacc4\uc0b0\ud558\ub294": 6, "poly2area": [6, 8, 16], "poly2ratio": [6, 8, 16], "image\ub4e4\uc744": [6, 16], "\uc218\ub7c9\ub9cc\ud07c": 6, "imageload": [6, 8, 16], "module\uc758": 6, "typo": 6, "113": 6, "stage\uc5d0": 6, "pad": [6, 8, 16], "\ubcc0\uc218": [6, 14], "111": 6, "return": [6, 9, 10, 12, 13, 14, 15, 16], "padding\uc744": 6, "\ud65c\uc6a9\ud558\ub294": 6, "_make_text": 6, "\ub4e4\uc5d0": 6, "\uc800\uc7a5\ud558\ub294": 6, "\ud30c\uc77c\uc758": 6, "\ub098\ud0c0\ub0b4\ub294": [6, 15, 16], "output_filenam": 6, "module\uc5d0": 6, "examples\uc758": 6, "109": 6, "timeout": 6, "108": 6, "case\uc640": 6, "snake": 6, "case\ub85c": 6, "\ub09c\uc7a1\ud558\uac8c": 6, "\uc815\uc758\ub41c": 6, "\ubcc0\uc218\uba85\uc744": 6, "pascal": 6, "107": 6, "127": 7, "dependency\uac00": 7, "\ud070": 7, "submodule\uc744": 7, "\uc120\ubcc4\uc801": 7, "\uc124\uce58\ub97c": 7, "barh": [8, 14], "barv": [8, 14], "read_csv": [8, 15], "algorithm\uacfc": 9, "\uad00\ub828\ub41c": 9, "\ub2e4\uc591\ud55c": [9, 10, 14, 15, 16], "\ud568\uc218\ub4e4": [9, 13, 14], "map": 9, "start": 9, "bfs\ub97c": 9, "\uc218\ud589\ud558\uae30": 9, "paramet": [9, 10, 11, 12, 13, 14, 15, 16], "int": [9, 10, 11, 12, 13, 14, 15, 16], "graph": [9, 13, 14], "graph\uc758": [9, 14], "\uc2dc\uc791": 9, "\uc9c0\uc810": 9, "\ubc29\ubb38": 9, "sorted_list": 9, "valu": [9, 15], "left": 9, "union": [9, 14, 16], "float": [9, 14, 16], "\uc815\ub82c\ub41c": 9, "\ucc3e\uace0\uc790\ud558\ub294": 9, "\uac12": [9, 15, 16], "\uac12\uc774": 9, "\uc0bd\uc785\ub420": 9, "\ub54c": 9, "right": 9, "dfs\ub97c": 9, "sig": 9, "inv": 9, "fals": [9, 10, 14, 15, 16], "complex": 9, "\uc2e0\ud638": [9, 10], "\ubcf5\uc18c\uc218": 9, "option": [9, 10, 11, 12, 13, 14, 15, 16], "bool": [9, 10, 14, 15, 16], "\ubc29\ud5a5\uc744": 9, "\uc9c0\uc815": 9, "\uc815\ubc29\ud5a5": 9, "true": [9, 10, 14, 15, 16], "\uc5ed\ubc29\ud5a5": 9, "\ubcc0\ud658\ub41c": 9, "\uacb0\uacfc": [9, 10, 12, 16], "0": [9, 10, 14, 15, 16], "0j": 9, "n_max": 9, "siev": 9, "eratosthen": 9, "\uad6c\ud558\uace0\uc790": 9, "\ud558\ub294": 9, "\ubc94\uc704\uc758": 9, "\ucd5c\ub313\uac12": 9, "n\uae4c\uc9c0": 9, "10": [9, 11, 12, 13, 14, 16], "\uc27d\uac8c": [10, 11], "class\ub4e4": [10, 12, 15, 16], "webhook_url": 10, "base": [10, 11, 12, 15, 16], "object": [10, 11, 12, 15, 16], "webhook\uc758": [10, 11], "\uc804\uc1a1\uc744": 10, "str": [10, 11, 12, 13, 14, 15, 16], "http": 10, "com": 10, "image_path": [10, 16], "\uc804\uc1a1\ud560": [10, 11], "\uc751\ub2f5": 10, "request": 10, "model": [10, 12], "respons": 10, "jpg": [10, 15], "200": [10, 14, 16], "gap": 10, "codeblock": 10, "\uac04": [10, 16], "\uac04\uaca9": [10, 16], "1500\uc790": 10, "\uc774\ub0b4\ub77c\uba74": 10, "\uc804\uc1a1\ub418\ub294": 10, "message\uc758": 10, "\uc2a4\ud0c0\uc77c": 10, "204": 10, "user": [10, 15], "repo": [10, 15], "token": [10, 11], "none": [10, 11, 12, 13, 14, 15, 16], "\ud638\ucd9c\ud560": [10, 12], "repositori": 10, "github\uc758": 10, "onli": 10, "__call__": [10, 12], "\uc218\ud589": [10, 12], "lab": 10, "\uc120\ud0dd\ud560": 10, "repository\uc758": 10, "per_pag": 10, "1\ud68c": 10, "\ucd9c\ub825\ub420": [10, 14, 15, 16], "\uacb0\uacfc\uc758": 10, "dict": [10, 12, 14, 15, 16], "ani": [10, 12, 15], "gh": 10, "ghp_": 10, "len": [10, 14, 15, 16], "kei": [10, 15, 16], "dict_kei": 10, "repository_url": 10, "labels_url": 10, "comments_url": 10, "events_url": 10, "html_url": 10, "id": [10, 15], "node_id": 10, "number": 10, "state": 10, "lock": 10, "mileston": 10, "comment": 10, "created_at": 10, "updated_at": 10, "closed_at": 10, "author_associ": 10, "active_lock_reason": 10, "reaction": 10, "timeline_url": 10, "performed_via_github_app": 10, "state_reason": 10, "release_not": 10, "name": [10, 12, 15, 16], "sphinx_source_path": 10, "directory\uc758": 10, "sphinx\uc758": 10, "o": [10, 15], "path": [10, 13, 15, 16], "join": [10, 15], "client": 10, "instanc": [10, 15], "\uacf5\uc2dd": 10, "\ucc38\uace0": 10, "\uc704\uc640": 10, "\uac19\uc774": [10, 15, 16], "page\uc5d0\uc11c": 10, "\ubc1c\uae09": 10, "\ub4f1\ub85d\ud574\uc57c": 10, "\uc788\ub2e4": [10, 15], "\uc704\uc5d0\uc11c": 10, "\ub4f1\ub85d\ud55c": 10, "\uac00\ub2a5\ud55c": 10, "model\uc758": [10, 12], "\uc0ac\uc6a9\ub420": [10, 12], "prompt": 10, "\uc120\ud0dd": 10, "stream": 10, "\uc751\ub2f5\uc758": 10, "\uc2e4\uc2dc\uac04": 10, "\ud638\ucd9c\ub41c": [10, 12], "sk": 10, "syncpag": 10, "babbag": 10, "001": 10, "1651172509": 10, "owned_bi": 10, "dev": [10, 15], "1687882411": 10, "gpt3": 10, "gpt4": 10, "zerohertzlib\uc5d0": 10, "\uc124\uba85\ud574": 10, "zerohertzlib\ub294": 10, "\uc624\ud508": 10, "\uc18c\uc2a4": 10, "\ud504\ub85c\uc81d\ud2b8\ub85c": 10, "\uc774": 10, "\ub77c\uc774\ube0c\ub7ec\ub9ac\ub294": 10, "matlab": 10, "\uc5b8\uc5b4\ub85c": 10, "\uc791\uc131\ub418\uc5c8\uc73c\uba70": 10, "zerohertzlib\uc740": 10, "package\uc57c": 10, "\ud1b5\uc2e0": [10, 12], "\uc2dc\uc2a4\ud15c\uc5d0": 10, "\ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4": 10, "kubernetes\uc5d0": 10, "kubernetes\ub294": 10, "\ucee8\ud14c\uc774\ub108\ud654\ub41c": 10, "\uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744": 10, "\uc790\ub3d9\ud654\ud558\uace0": 10, "\uad00\ub9ac\ud558\uae30": 10, "\uc624\ud508\uc18c\uc2a4": 10, "\ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4": 10, "audio": 10, "beta": 10, "chat": 10, "complet": 10, "edit": 10, "embed": 10, "fine_tun": 10, "moder": 10, "organ": 10, "with_raw_respons": 10, "channel": [10, 11], "icon_emoji": 10, "icon_url": 10, "bot\uc758": [10, 11], "bot\uc774": [10, 11], "\ud45c\uc2dc\ub420": [10, 14], "\uc0ac\uc9c4": [10, 16], "emoji": 10, "photo": 10, "xoxb": 10, "sparkl": 10, "product": 10, "asset": 10, "6210df": 10, "s3": 10, "amazonaw": 10, "42334717": 10, "284166558": 10, "0ba4b755": 10, "39cc": 10, "48ee": 10, "ba3b": 10, "5c02f54c4ca7": 10, "png": [10, 15, 16], "\uacfc": 10, "icon_": 10, "\ubd88\uac00": 10, "hook": 10, "servic": 10, "ghost": 10, "\ub610\ub294": [11, 14, 16], "file\uc5d0": [11, 13, 15], "log\ub97c": 11, "\uc791\uc131\ud560": 11, "logger_nam": 11, "file_nam": 11, "logger_level": 11, "console_level": 11, "file_level": 11, "\uc774\uc058\uac8c": 11, "\ucc0d\uc5b4\ubcf4\ub294": 11, "\uc608\ubed0\uc9c0\uace0": 11, "\uc2f6\uc2b5\ub2c8\ub2e4": 11, "logger\uc758": 11, "file\uc758": [11, 14, 15, 16], "\ubbf8\uc785\ub825": 11, "\ubbf8\ucd9c\ub825": 11, "\ud639\uc740": [11, 15, 16], "getlogg": 11, "level": 11, "streamhandl": 11, "filehandl": 11, "test_1": 11, "debug": 11, "36": [11, 14], "505": 11, "info": [11, 16], "warn": 11, "critic": 11, "mlops\uc5d0\uc11c": 12, "\uc0ac\uc6a9\ub418\ub294": 12, "svc_name": 12, "namespac": 12, "model_nam": 12, "port": 12, "8001": 12, "kubernetes\uc5d0\uc11c": 12, "\uc2e4\ud589\ub418\ub294": 12, "\ud638\ucd9c\uc744": 12, "kubernet": 12, "service\uc758": 12, "server": 12, "grpc": 12, "\ubc88\ud638": 12, "input": [12, 16], "\uc9c0\uc815\ub41c": 12, "output": 12, "arg": 12, "ndarrai": [12, 16], "dtypelik": [12, 16], "self": [12, 15], "kubectl": 12, "get": [12, 15], "svc": 12, "n": [12, 16], "cluster": 12, "ip": 12, "extern": 12, "ag": 12, "fastapi": 12, "clusterip": 12, "106": 12, "72": 12, "126": 12, "tcp": 12, "96": 12, "172": [12, 14], "docker": 12, "exec": 12, "api_contain": 12, "bash": 12, "tc": 12, "data_typ": 12, "type_fp32": 12, "dim": [12, 14], "640": 12, "output0": 12, "25200": 12, "85": 12, "np": [12, 14, 15, 16], "zero": [12, 16], "arrai": [12, 15, 16], "90108061e": 12, "00": [12, 15, 16], "51982164e": 12, "49971962e": 12, "21481919e": 12, "17585063e": 12, "36753917e": 12, "dtype": [12, 16], "float32": 12, "\uc678\ubd80\uc5d0\uc11c": 12, "localhost": 12, "\ud604\uc7ac": [13, 14, 15, 16], "\uae30\uae30\uc758": 13, "\uc0c1\ud0dc\ub97c": 13, "\uc0b4\ud3b4\ubcfc": 13, "tick": 13, "dpi": [13, 14], "\uc2dc\uac04\uc5d0": 13, "\uc0ac\uc6a9\ub7c9\uc744": 13, "\uac01": [13, 14], "\ucf54\uc5b4\uc5d0": 13, "\uc8fc\uae30": 13, "\ucd1d": 13, "\uc2dc\uac04": [13, 14], "graph\ub97c": 13, "\uc800\uc7a5\ud560": 13, "dot": [13, 14], "per": [13, 14, 16], "inch": [13, 14], "\uacbd\ub85c\uc5d0": [13, 15], "\ubc14\ub85c": [13, 14, 16], "gpu": 13, "memori": 13, "gpu\uc5d0": 13, "usag": 13, "graph\ub85c": 13, "etc": 13, "\ub85c": [13, 15, 16], "\ubd84\ub958\ub420": 13, "\uc784\uacc4\uac12": 13, "\ub2e8\uc704": [13, 14, 16], "\ubcc0\uc218\ub4e4\uc744": 14, "\ucd5c\ub300\ud55c": 14, "\uc9c0\uc815\ud558\uc9c0": 14, "\uc54a\uace0": 14, "xlab": 14, "\ube48\ub3c4": 14, "ylab": 14, "tmp": [14, 15, 16], "ratio": 14, "300": [14, 15, 16], "rot": 14, "dictionary\ub85c": 14, "\uc785\ub825\ubc1b\uc740": 14, "\uc138\ub85c": 14, "graph\uc5d0": 14, "x\ucd95": 14, "y\ucd95": 14, "tupl": [14, 16], "\uac00\ub85c": [14, 16], "\uae38\uc774": [14, 15], "x\ucd95\uc758": 14, "\ub208\uae08": 14, "\ud68c\uc804": 14, "\uac01\ub3c4": 14, "\uc0c1\ub2e8\uc5d0": 14, "percentag": 14, "\ud45c\uc2dc": [14, 16], "directory\uc5d0": [14, 16], "\ud14c\ub780": [14, 15], "\uc800\uadf8": [14, 15], "\ud504\ub85c\ud1a0\uc2a4": [14, 15], "30": [14, 16], "\uc778\uad6c": 14, "\uba85": 14, "\uc885\uc871": [14, 15], "star": 14, "craft": 14, "cnt": [14, 16], "rand": 14, "uint8": [14, 16], "\uc0c9": [14, 16], "\ucd94\ucd9c": 14, "\ucd94\ucd9c\ud560": 14, "\uc0c9\uc758": 14, "random": [14, 15, 16], "\uc0c9\uc0c1\uc758": 14, "list\ub85c": 14, "\uad6c\uc131\ub41c": [14, 16], "9710194877714075": 14, "4645444048369612": 14, "21958695134807432": 14, "9677975592919913": 14, "44127456009157356": 14, "5358103155058701": 14, "5920891529639701": 14, "6418467016378244": 14, "1935069134991043": 14, "21044753832183283": 14, "6773105080456748": 14, "6433941168468681": 14, "6423044349219739": 14, "5497680051256467": 14, "9582651433656727": 14, "22420518847992715": 14, "6551391052055489": 14, "8272616286387289": 14, "21125140522513897": 14, "6760830215342485": 14, "6556099802889619": 14, "9590000285927794": 14, "36894286394742526": 14, "9138608732554839": 14, "167": 14, "246": 14, "112": 14, "136": 14, "150": 14, "163": 14, "164": 14, "140": 14, "244": 14, "247": 14, "160": 14, "171": 14, "176": 14, "110": 14, "ovp": 14, "histogram\uc73c\ub85c": 14, "bin\uc758": 14, "\uac1c\uc218": 14, "class\uc5d0": [14, 16], "histogram": 14, "overlap": 14, "1000": [14, 16], "\uc131\uc801": 14, "\uc810": 14, "\uc778\uc6d0": 14, "int_label": 14, "\uc218\uce58\uc758": 14, "\uc18c\uc218\uc810": 14, "xdata": 14, "ydata": 14, "list\uc640": [14, 15, 16], "limit": 14, "legend": 14, "\uc5f4\uc758": 14, "rang": [14, 16], "\ucd08": 14, "size": [14, 15, 16], "plot\uc73c\ub85c": 14, "marker\uc758": 14, "\ud06c\uae30": [14, 16], "400": [14, 16], "\ube44\uc6a9": 14, "\ubbf8\ub124\ub784": 14, "\uc804\ud22c\ub825": [14, 15], "col": 14, "row": 14, "8": [14, 15, 16], "x": [14, 15], "\ud06c\uae30\ub97c": 14, "\uac00\uc9c0\ub294": 14, "\uc5f4": 14, "column": 14, "\ud589": 14, "\ubb38\uc790\uc758": [14, 16], "\uc800\uc7a5\ub420": [14, 16], "test1": 14, "test2": 14, "test3": 14, "test4": 14, "craft2": 14, "format\uc758": 15, "hadling\ud558\ub294": 15, "file\uc744": [15, 16], "\uc785\ub825\ud558\uc9c0": 15, "\uc54a\uc744": 15, "\uacbd\ub85c\ub85c": 15, "\uc785\ub825\ud558\uba74": 15, "\ud574\ub2f9": 15, "\uc77d\ub294\ub2e4": 15, "\uc9c1\ub82c\ud654\ub41c": 15, "json\uc758": 15, "\uac12\ub4e4": 15, "\uc77d\uc5b4\uc628": [15, 16], "__getitem__": [15, 16], "file\uc5d0\uc11c": 15, "key\uc5d0": 15, "_get_kei": 15, "key\uc758": 15, "\uacbd\ub85c\ub97c": 15, "\ucc3e\uc544\uc8fc\ub294": 15, "\ubb34\uad00": 15, "\uae4a\uc774\ub97c": 15, "\ud45c\uc2dc\ud55c": 15, "_get_valu": 15, "\uc0dd\uc131\ub41c": 15, "\uac12\uc744": 15, "\ubc1b\uc544": 15, "j": [15, 16], "languag": 15, "head": 15, "login": 15, "traceback": 15, "most": 15, "recent": 15, "call": 15, "last": 15, "stdin": 15, "home": 15, "anaconda3": 15, "lib": 15, "site": 15, "keyerror": 15, "tree": [15, 16], "\uad6c\uc870\ub97c": 15, "\ucd9c\ub825\ud558\ub294": 15, "file\ub4e4\uc744": [15, 16], "\uc774\ub984\ub4e4": 15, "\uc774\ub984\uc5d0": 15, "\ubc30\uc5f4": 15, "idx": [15, 16], "index\uc5d0": [15, 16], "jsd": 15, "3640": 15, "26it": 15, "0x7f2562b83d00": 15, "uniqu": 15, "\ub370\uc774\ud130\ub4e4\uc758": 15, "\uc720\uc77c\ud55c": 15, "return\ud558\ub294": [15, 16], "\uac12\ub4e4\uc758": 15, "\uc9d1\ud569": 15, "set": 15, "sha": 15, "dfd53a0bfc73221dbe96d5e44a49c524d5a8596b": 15, "bc33235424e89cbbf23434b2a824ea068d167c7d": 15, "97f52f9b81ba885fe69b9726632e580f5cba94b": 15, "768c7711f94af0be00cd55e0ce7b892465cfa64a": 15, "97e103788359f0361f4ec0e138a14218f28eddd4": 15, "start_data_path": 15, "start_json_path": 15, "json_kei": [15, 16], "target_path": [15, 16], "end_data_dir": 15, "end_json_dir": 15, "\ubaa9\ud45c": [15, 16], "data\uac00": [15, 16], "directori": [15, 16], "file\uc774": [15, 16], "datapath": 15, "\uc5d0\uc11c": [15, 16], "data\uc758": [15, 16], "\uad6c\ucd95\ub420": 15, "\uc77d\uc5b4": [15, 16], "\ud65c\uc6a9": [15, 16], "end_data_path": 15, "end_json_path": 15, "json_inst": 15, "filter": 15, "\ub420": 15, "instance\uc758": 15, "\uc815\ubcf4": [15, 16], "\ud3ec\ud568": 15, "\uc544\ub798\uc640": 15, "\uc0c1\uc18d\uc744": 15, "\uc870\uac74\uc744": 15, "\uc124\uc815\ud560": 15, "makedatacar": 15, "def": 15, "supercategory_nam": 15, "categori": 15, "citycar": 15, "mid": 15, "car": 15, "make": 15, "makedatacardamag": 15, "annot": 15, "white": 15, "make_data": 15, "data_nam": 15, "img": [15, 16], "imread": 15, "ant": 15, "enumer": 15, "damag": 15, "segment": 15, "h": [15, 16], "w": [15, 16], "_": [15, 16], "shape": [15, 16], "split": 15, "f": 15, "xm": 15, "ym": 15, "min": 15, "imwrit": 15, "tolist": 15, "makedatacaraug": 15, "choic": 15, "glob": 15, "target": [15, 16], "imread_unchang": 15, "randrang": [15, 16], "\uc2e4\ud589": 15, "\uc9c4\ud589": 15, "403559": 15, "7369": 15, "96it": 15, "01": 15, "04": [15, 16], "6292": 15, "39it": 15, "\ubc29\ubc95": 15, "\uc815\uc758": 15, "\uc758\ud574": 15, "\ucd9c\ub825\ub41c": 15, "\ubcf8": 15, "\ud568\uc218\ub97c": 15, "\ud655\uc7a5\uc790\uc758": 15, "\ud0d0\uc0c9": 15, "\ucc3e\uc744": 15, "\ud655\uc7a5\uc790\uc5d0": 15, "defaultdict": 15, "mov": 15, "header": 15, "comma": 15, "separ": 15, "tab": 15, "\uc785\ub825\ub420": 15, "header\uc758": 15, "\uc720\ubb34": 15, "\uae30\ubc18\uc73c\ub85c": [15, 16], "column\uc5d0": 15, "\uad6c\uc131": 15, "header\uac00": 15, "\uacbd\uc6b0": 15, "\ubd80\ud130": 15, "\ucc28\ub840\ub300\ub85c": 15, "star_craft": 15, "5hi9": 15, "gor2": 15, "gk03": 15, "\uc810\uc218": 15, "1248": 15, "2309": 15, "291": 15, "\uc808\ub300": 15, "javascript": 15, "notat": 15, "\uc744": 15, "4169": 15, "4209": 15, "\uc544\ubb34": 15, "\uac70\ub098": 15, "handling\ud558\uace0": 16, "bbox\uc758": 16, "cx": 16, "cy": 16, "x2": 16, "y2": 16, "x3": 16, "y3": 16, "\uacbd\ub85c\uc640": 16, "\uc218\ub97c": 16, "\uc9c0\uc815\ud558\uc5ec": 16, "image\ub4e4\uc774": 16, "image\ub4e4\uc758": 16, "\ud574\ub2f9\ud558\ub294": 16, "il": 16, "data_path": 16, "json_path": 16, "image\uc640": 16, "\uc815\ubcf4\ub97c": 16, "\ubd88\ub7ec\uc624\ub294": 16, "jil": 16, "17248": 16, "3581": 16, "22it": 16, "600": 16, "800": 16, "date_cr": 16, "255": 16, "thick": 16, "c": 16, "\ud558\ub098": 16, "\uac1c\uc758": 16, "\uc120\uc758": 16, "\ub450\uaed8": 16, "1200": 16, "res1": 16, "250": 16, "900": 16, "res2": 16, "befor": 16, "after": 16, "area": 16, "qualiti": 16, "\ub450": 16, "\ube44\uad50\ud558\ub294": 16, "\uc601\uc0c1": 16, "\ubaa8\ub378": 16, "\ucd94\ub860": 16, "\ube44\uad50\ud560": 16, "x_0": 16, "y_0": 16, "x_1": 16, "y_1": 16, "\ubc31\ubd84\uc728": 16, "bgr": 16, "grai": 16, "gaussianblur": 16, "cvtcolor": 16, "color_bgr2grai": 16, "resiz": 16, "60": 16, "background": 16, "\ud22c\uba85\ud654": 16, "\uc601\uc5ed\uc758": 16, "\uc678": 16, "\ubc30\uacbd\uc758": 16, "1100": 16, "128": 16, "res3": 16, "75": 16, "\uc785\ub825\ubc1b\uc544": 16, "\ud55c": 16, "\uc815\ubc29\ud615": 16, "\ubcd1\ud569": 16, "padding\uc758": 16, "color_bgr2bgra": 16, "durat": 16, "500": 16, "gif\ub85c": 16, "\ubcc0\ud658\ud560": 16, "m": 16, "\ub2e8\uc704\uc758": 16, "pt": 16, "point": 16, "label_studio_path": 16, "annotation\ud55c": 16, "studio": 16, "annotation\uc5d0": 16, "file\ub85c": 16, "studio\uc5d0\uc11c": 16, "\uc0ac\uc6a9\ud55c": 16, "label\uc744": 16, "\uc815\uc218\ub85c": 16, "dictionari": 16, "txt": 16, "mk": 16, "class_list": 16, "class_color": 16, "border": 16, "\ubcd1\ud569\ud560": 16, "mask\uc758": 16, "\ubb34\uc2dc": 16, "\uacbd\uacc4\uc120": 16, "without": 16, "center_x": 16, "randint": 16, "center_i": 16, "radiu": 16, "circl": 16, "astyp": 16, "cl": 16, "shape\ub85c": 16, "\ucd9c\ub825\uc758": 16, "padding\uc5d0": 16, "\ubcc0\ud615\ub420": 16, "\ubcc0\ud615\ub41c": 16, "\uc88c\ud45c\uac12": 16, "color_bgra2grai": 16, "res4": 16, "2000": 16, "vi": 16, "\uad6c\ud604": 16, "open": 16, "convert": 16, "rgba": 16, "\ubcd1\ud569\ub420": 16, "\uc601\uc5ed": 16, "\ubcd1\ud569\uc744": 16, "\uc704\ud574": 16, "channel\uc5d0": 16, "\uc801\uc6a9\ub420": 16, "blur\uc758": 16, "kernel": 16, "With": 16, "poly3": 16, "557": 16, "14285714": 16, "628": 16, "57142857": 16, "542": 16, "85714286": 16, "poly4": 16, "blur": 16, "res5": 16, "poly5": 16, "501": 16, "\uba74\uc801\uc744": 16, "\uc0b0\ucd9c\ud558\ub294": 16, "550": 16, "880000": 16, "mask\ub85c": 16, "\uaf2d\uc9d3\uc810": 16, "\ube44\uc728": 16, "55": 16, "\ubb38\uc790\uc5f4\uc774": 16, "\uc874\uc7ac\ud560": 16, "\ucd94\uac00\ud560": 16, "\ubb38\uc790\uc5f4": 16, "\ubb38\uc790": 16, "\uba3c\uc9c0\uc57c": 16, "revers": 16, "\uc774\uc0c1\uc758": 16, "pixel": 16, "height": 16, "\ub192\uc774": 16, "fp": 16, "\ub3d9\uc601\uc0c1\uc744": 16, "\ub3d9\uc601\uc0c1\uc774": 16, "gif\uc758": 16, "\ud488\uc9c8": 16, "frame": 16, "second": 16, "mp4": 16}, "objects": {"zerohertzLib": [[9, 0, 0, "-", "algorithm"], [10, 0, 0, "-", "api"], [11, 0, 0, "-", "logging"], [12, 0, 0, "-", "mlops"], [13, 0, 0, "-", "monitoring"], [14, 0, 0, "-", "plot"], [15, 0, 0, "-", "util"], [16, 0, 0, "-", "vision"]], "zerohertzLib.algorithm": [[9, 1, 1, "", "bfs"], [9, 1, 1, "", "bisect_left"], [9, 1, 1, "", "bisect_right"], [9, 1, 1, "", "dfs"], [9, 1, 1, "", "fft"], [9, 1, 1, "", "soe"]], "zerohertzLib.algorithm.bfs.params": [[9, 2, 1, "", "maps"], [9, 2, 1, "", "start"]], "zerohertzLib.algorithm.bisect_left.params": [[9, 2, 1, "", "sorted_list"], [9, 2, 1, "", "value"]], "zerohertzLib.algorithm.bisect_right.params": [[9, 2, 1, "", "sorted_list"], [9, 2, 1, "", "value"]], "zerohertzLib.algorithm.dfs.params": [[9, 2, 1, "", "maps"], [9, 2, 1, "", "start"]], "zerohertzLib.algorithm.fft.params": [[9, 2, 1, "", "inv"], [9, 2, 1, "", "sig"]], "zerohertzLib.algorithm.soe.params": [[9, 2, 1, "", "n_max"]], "zerohertzLib.api": [[10, 3, 1, "", "Discord"], [10, 3, 1, "", "GitHub"], [10, 3, 1, "", "OpenAI"], [10, 3, 1, "", "SlackBot"], [10, 3, 1, "", "SlackWebhook"]], "zerohertzLib.api.Discord": [[10, 4, 1, "", "image"], [10, 4, 1, "", "message"]], "zerohertzLib.api.Discord.image.params": [[10, 2, 1, "", "image_path"]], "zerohertzLib.api.Discord.message.params": [[10, 2, 1, "", "codeblock"], [10, 2, 1, "", "gap"], [10, 2, 1, "", "message"]], "zerohertzLib.api.Discord.params": [[10, 2, 1, "", "webhook_url"]], "zerohertzLib.api.GitHub": [[10, 4, 1, "", "__call__"], [10, 4, 1, "", "release_note"]], "zerohertzLib.api.GitHub.params": [[10, 2, 1, "", "issue"], [10, 2, 1, "", "repo"], [10, 2, 1, "", "token"], [10, 2, 1, "", "user"]], "zerohertzLib.api.GitHub.release_note.params": [[10, 2, 1, "", "name"], [10, 2, 1, "", "sphinx_source_path"]], "zerohertzLib.api.OpenAI": [[10, 4, 1, "", "__call__"], [10, 5, 1, "", "api_key"], [10, 5, 1, "", "audio"], [10, 5, 1, "", "beta"], [10, 5, 1, "", "chat"], [10, 5, 1, "", "completions"], [10, 5, 1, "", "edits"], [10, 5, 1, "", "embeddings"], [10, 5, 1, "", "files"], [10, 5, 1, "", "fine_tunes"], [10, 5, 1, "", "fine_tuning"], [10, 5, 1, "", "images"], [10, 5, 1, "", "model"], [10, 5, 1, "", "models"], [10, 5, 1, "", "moderations"], [10, 5, 1, "", "organization"], [10, 5, 1, "", "with_raw_response"]], "zerohertzLib.api.OpenAI.params": [[10, 2, 1, "", "api_key"]], "zerohertzLib.api.SlackBot": [[10, 4, 1, "", "file"], [10, 4, 1, "", "message"]], "zerohertzLib.api.SlackBot.file.params": [[10, 2, 1, "", "path"]], "zerohertzLib.api.SlackBot.message.params": [[10, 2, 1, "", "codeblock"], [10, 2, 1, "", "message"]], "zerohertzLib.api.SlackBot.params": [[10, 2, 1, "", "channel"], [10, 2, 1, "", "icon_emoji"], [10, 2, 1, "", "icon_url"], [10, 2, 1, "", "name"], [10, 2, 1, "", "token"]], "zerohertzLib.api.SlackWebhook": [[10, 4, 1, "", "message"]], "zerohertzLib.api.SlackWebhook.message.params": [[10, 2, 1, "", "codeblock"], [10, 2, 1, "", "message"]], "zerohertzLib.api.SlackWebhook.params": [[10, 2, 1, "", "webhook_url"]], "zerohertzLib.logging": [[11, 3, 1, "", "Logger"]], "zerohertzLib.logging.Logger": [[11, 4, 1, "", "critical"], [11, 4, 1, "", "debug"], [11, 4, 1, "", "error"], [11, 4, 1, "", "info"], [11, 4, 1, "", "warning"]], "zerohertzLib.logging.Logger.params": [[11, 2, 1, "", "channel"], [11, 2, 1, "", "console_level"], [11, 2, 1, "", "discord"], [11, 2, 1, "", "file_level"], [11, 2, 1, "", "file_name"], [11, 2, 1, "", "logger_level"], [11, 2, 1, "", "logger_name"], [11, 2, 1, "", "slack"]], "zerohertzLib.mlops": [[12, 3, 1, "", "TritonClientK8s"], [12, 3, 1, "", "TritonClientURL"]], "zerohertzLib.mlops.TritonClientK8s": [[12, 4, 1, "", "__call__"], [12, 5, 1, "", "inputs"], [12, 5, 1, "", "outputs"]], "zerohertzLib.mlops.TritonClientK8s.params": [[12, 2, 1, "", "model_name"], [12, 2, 1, "", "namespace"], [12, 2, 1, "", "port"], [12, 2, 1, "", "svc_name"]], "zerohertzLib.mlops.TritonClientURL": [[12, 4, 1, "", "__call__"], [12, 5, 1, "", "inputs"], [12, 5, 1, "", "outputs"]], "zerohertzLib.mlops.TritonClientURL.params": [[12, 2, 1, "", "model_name"], [12, 2, 1, "", "port"], [12, 2, 1, "", "url"]], "zerohertzLib.monitoring": [[13, 1, 1, "", "cpu"], [13, 1, 1, "", "gpu_memory"], [13, 1, 1, "", "gpu_usages"], [13, 1, 1, "", "storage"]], "zerohertzLib.monitoring.cpu.params": [[13, 2, 1, "", "dpi"], [13, 2, 1, "", "path"], [13, 2, 1, "", "threshold"], [13, 2, 1, "", "tick"]], "zerohertzLib.monitoring.gpu_memory.params": [[13, 2, 1, "", "dpi"], [13, 2, 1, "", "path"], [13, 2, 1, "", "threshold"], [13, 2, 1, "", "tick"]], "zerohertzLib.monitoring.gpu_usages.params": [[13, 2, 1, "", "dpi"], [13, 2, 1, "", "path"], [13, 2, 1, "", "threshold"], [13, 2, 1, "", "tick"]], "zerohertzLib.monitoring.storage.params": [[13, 2, 1, "", "path"], [13, 2, 1, "", "threshold"]], "zerohertzLib.plot": [[14, 1, 1, "", "barh"], [14, 1, 1, "", "barv"], [14, 1, 1, "", "color"], [14, 1, 1, "", "hist"], [14, 1, 1, "", "pie"], [14, 1, 1, "", "plot"], [14, 1, 1, "", "scatter"], [14, 1, 1, "", "table"]], "zerohertzLib.plot.barh.params": [[14, 2, 1, "", "data"], [14, 2, 1, "", "dpi"], [14, 2, 1, "", "per"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "rot"], [14, 2, 1, "", "title"], [14, 2, 1, "", "xlab"], [14, 2, 1, "", "ylab"]], "zerohertzLib.plot.barv.params": [[14, 2, 1, "", "data"], [14, 2, 1, "", "dpi"], [14, 2, 1, "", "per"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "rot"], [14, 2, 1, "", "title"], [14, 2, 1, "", "xlab"], [14, 2, 1, "", "ylab"]], "zerohertzLib.plot.color.params": [[14, 2, 1, "", "cnt"], [14, 2, 1, "", "rand"], [14, 2, 1, "", "uint8"]], "zerohertzLib.plot.hist.params": [[14, 2, 1, "", "cnt"], [14, 2, 1, "", "data"], [14, 2, 1, "", "dpi"], [14, 2, 1, "", "ovp"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "title"], [14, 2, 1, "", "xlab"], [14, 2, 1, "", "ylab"]], "zerohertzLib.plot.pie.params": [[14, 2, 1, "", "data"], [14, 2, 1, "", "dim"], [14, 2, 1, "", "dpi"], [14, 2, 1, "", "int_label"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "title"]], "zerohertzLib.plot.plot.params": [[14, 2, 1, "", "dpi"], [14, 2, 1, "", "ncol"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "title"], [14, 2, 1, "", "xdata"], [14, 2, 1, "", "xlab"], [14, 2, 1, "", "xlim"], [14, 2, 1, "", "ydata"], [14, 2, 1, "", "ylab"], [14, 2, 1, "", "ylim"]], "zerohertzLib.plot.scatter.params": [[14, 2, 1, "", "data"], [14, 2, 1, "", "dpi"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "size"], [14, 2, 1, "", "title"], [14, 2, 1, "", "xlab"], [14, 2, 1, "", "ylab"]], "zerohertzLib.plot.table.params": [[14, 2, 1, "", "col"], [14, 2, 1, "", "data"], [14, 2, 1, "", "dpi"], [14, 2, 1, "", "font_size"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "row"], [14, 2, 1, "", "title"]], "zerohertzLib.util": [[15, 3, 1, "", "Json"], [15, 3, 1, "", "JsonDir"], [15, 3, 1, "", "MakeData"], [15, 1, 1, "", "find_ext"], [15, 1, 1, "", "read_csv"], [15, 1, 1, "", "write_csv"], [15, 1, 1, "", "write_json"]], "zerohertzLib.util.Json": [[15, 4, 1, "", "__getitem__"], [15, 4, 1, "", "__len__"], [15, 4, 1, "", "_get_key"], [15, 4, 1, "", "_get_value"], [15, 4, 1, "", "get"], [15, 5, 1, "", "keys"], [15, 5, 1, "", "name"], [15, 4, 1, "", "tree"]], "zerohertzLib.util.Json.get.params": [[15, 2, 1, "", "key"]], "zerohertzLib.util.Json.params": [[15, 2, 1, "", "path"]], "zerohertzLib.util.JsonDir": [[15, 4, 1, "", "__getitem__"], [15, 4, 1, "", "__len__"], [15, 4, 1, "", "_get_key"], [15, 5, 1, "", "data"], [15, 5, 1, "", "name"], [15, 4, 1, "", "tree"], [15, 4, 1, "", "unique"]], "zerohertzLib.util.JsonDir.params": [[15, 2, 1, "", "path"]], "zerohertzLib.util.JsonDir.unique.params": [[15, 2, 1, "", "key"]], "zerohertzLib.util.MakeData": [[15, 4, 1, "", "condition"], [15, 5, 1, "", "end_data_path"], [15, 5, 1, "", "end_json_path"], [15, 5, 1, "", "json"], [15, 4, 1, "", "make"], [15, 4, 1, "", "make_data"]], "zerohertzLib.util.MakeData.condition.params": [[15, 2, 1, "", "json_instance"]], "zerohertzLib.util.MakeData.make_data.params": [[15, 2, 1, "", "data_name"], [15, 2, 1, "", "json_instance"]], "zerohertzLib.util.MakeData.params": [[15, 2, 1, "", "end_data_dir"], [15, 2, 1, "", "end_json_dir"], [15, 2, 1, "", "json_key"], [15, 2, 1, "", "start_data_path"], [15, 2, 1, "", "start_json_path"], [15, 2, 1, "", "target_path"]], "zerohertzLib.util.find_ext.params": [[15, 2, 1, "", "path"]], "zerohertzLib.util.read_csv.params": [[15, 2, 1, "", "header"], [15, 2, 1, "", "path"]], "zerohertzLib.util.write_csv.params": [[15, 2, 1, "", "data"], [15, 2, 1, "", "path"], [15, 2, 1, "", "tsv"]], "zerohertzLib.util.write_json.params": [[15, 2, 1, "", "data"], [15, 2, 1, "", "path"]], "zerohertzLib.vision": [[16, 3, 1, "", "ImageLoader"], [16, 3, 1, "", "JsonImageLoader"], [16, 1, 1, "", "bbox"], [16, 1, 1, "", "before_after"], [16, 1, 1, "", "cutout"], [16, 1, 1, "", "cwh2poly"], [16, 1, 1, "", "cwh2xyxy"], [16, 1, 1, "", "grid"], [16, 1, 1, "", "img2gif"], [16, 1, 1, "", "is_pts_in_poly"], [16, 1, 1, "", "labelstudio2labelme"], [16, 1, 1, "", "labelstudio2yolo"], [16, 1, 1, "", "masks"], [16, 1, 1, "", "pad"], [16, 1, 1, "", "paste"], [16, 1, 1, "", "poly2area"], [16, 1, 1, "", "poly2cwh"], [16, 1, 1, "", "poly2mask"], [16, 1, 1, "", "poly2ratio"], [16, 1, 1, "", "poly2xyxy"], [16, 1, 1, "", "text"], [16, 1, 1, "", "transparent"], [16, 1, 1, "", "vert"], [16, 1, 1, "", "vid2gif"], [16, 1, 1, "", "xyxy2cwh"], [16, 1, 1, "", "xyxy2poly"]], "zerohertzLib.vision.ImageLoader": [[16, 4, 1, "", "__getitem__"], [16, 4, 1, "", "__len__"], [16, 5, 1, "", "image_paths"]], "zerohertzLib.vision.ImageLoader.params": [[16, 2, 1, "", "cnt"], [16, 2, 1, "", "path"]], "zerohertzLib.vision.JsonImageLoader": [[16, 4, 1, "", "__getitem__"], [16, 4, 1, "", "__len__"], [16, 5, 1, "", "json"]], "zerohertzLib.vision.JsonImageLoader.params": [[16, 2, 1, "", "data_path"], [16, 2, 1, "", "json_key"], [16, 2, 1, "", "json_path"]], "zerohertzLib.vision.bbox.params": [[16, 2, 1, "", "box"], [16, 2, 1, "", "color"], [16, 2, 1, "", "img"], [16, 2, 1, "", "thickness"]], "zerohertzLib.vision.before_after.params": [[16, 2, 1, "", "after"], [16, 2, 1, "", "area"], [16, 2, 1, "", "before"], [16, 2, 1, "", "filename"], [16, 2, 1, "", "per"], [16, 2, 1, "", "quality"]], "zerohertzLib.vision.cutout.params": [[16, 2, 1, "", "alpha"], [16, 2, 1, "", "background"], [16, 2, 1, "", "crop"], [16, 2, 1, "", "img"], [16, 2, 1, "", "poly"]], "zerohertzLib.vision.cwh2poly.params": [[16, 2, 1, "", "box"]], "zerohertzLib.vision.cwh2xyxy.params": [[16, 2, 1, "", "box"]], "zerohertzLib.vision.grid.params": [[16, 2, 1, "", "color"], [16, 2, 1, "", "filename"], [16, 2, 1, "", "imgs"], [16, 2, 1, "", "size"]], "zerohertzLib.vision.img2gif.params": [[16, 2, 1, "", "duration"], [16, 2, 1, "", "filename"], [16, 2, 1, "", "path"]], "zerohertzLib.vision.is_pts_in_poly.params": [[16, 2, 1, "", "poly"], [16, 2, 1, "", "pts"]], "zerohertzLib.vision.labelstudio2labelme.params": [[16, 2, 1, "", "label_studio_path"], [16, 2, 1, "", "target_path"]], "zerohertzLib.vision.labelstudio2yolo.params": [[16, 2, 1, "", "label"], [16, 2, 1, "", "label_studio_path"], [16, 2, 1, "", "target_path"]], "zerohertzLib.vision.masks.params": [[16, 2, 1, "", "alpha"], [16, 2, 1, "", "border"], [16, 2, 1, "", "class_color"], [16, 2, 1, "", "class_list"], [16, 2, 1, "", "color"], [16, 2, 1, "", "img"], [16, 2, 1, "", "mks"], [16, 2, 1, "", "poly"]], "zerohertzLib.vision.pad.params": [[16, 2, 1, "", "color"], [16, 2, 1, "", "img"], [16, 2, 1, "", "poly"], [16, 2, 1, "", "shape"]], "zerohertzLib.vision.paste.params": [[16, 2, 1, "", "alpha"], [16, 2, 1, "", "box"], [16, 2, 1, "", "gaussian"], [16, 2, 1, "", "img"], [16, 2, 1, "", "poly"], [16, 2, 1, "", "resize"], [16, 2, 1, "", "target"], [16, 2, 1, "", "vis"]], "zerohertzLib.vision.poly2area.params": [[16, 2, 1, "", "poly"]], "zerohertzLib.vision.poly2cwh.params": [[16, 2, 1, "", "box"]], "zerohertzLib.vision.poly2mask.params": [[16, 2, 1, "", "poly"], [16, 2, 1, "", "shape"]], "zerohertzLib.vision.poly2ratio.params": [[16, 2, 1, "", "poly"]], "zerohertzLib.vision.poly2xyxy.params": [[16, 2, 1, "", "box"]], "zerohertzLib.vision.text.params": [[16, 2, 1, "", "box"], [16, 2, 1, "", "color"], [16, 2, 1, "", "font_size"], [16, 2, 1, "", "img"], [16, 2, 1, "", "txt"], [16, 2, 1, "", "vis"]], "zerohertzLib.vision.transparent.params": [[16, 2, 1, "", "img"], [16, 2, 1, "", "reverse"], [16, 2, 1, "", "threshold"]], "zerohertzLib.vision.vert.params": [[16, 2, 1, "", "filename"], [16, 2, 1, "", "height"], [16, 2, 1, "", "imgs"]], "zerohertzLib.vision.vid2gif.params": [[16, 2, 1, "", "filename"], [16, 2, 1, "", "fps"], [16, 2, 1, "", "path"], [16, 2, 1, "", "quality"]], "zerohertzLib.vision.xyxy2cwh.params": [[16, 2, 1, "", "box"]], "zerohertzLib.vision.xyxy2poly.params": [[16, 2, 1, "", "box"]]}, "objtypes": {"0": "py:module", "1": "py:function", "2": "py:parameter", "3": "py:class", "4": "py:method", "5": "py:attribute"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "function", "Python function"], "2": ["py", "parameter", "Python parameter"], "3": ["py", "class", "Python class"], "4": ["py", "method", "Python method"], "5": ["py", "attribute", "Python attribute"]}, "titleterms": {"ci": 0, "cd": 0, "pipelin": 0, "us": 0, "stack": 0, "jenkin": 0, "dev": 0, "branch": 0, "rule": 0, "chore": 0, "github": 0, "action": 0, "manag": 0, "label": 0, "issu": 0, "pull": 0, "request": 0, "sphinx": 0, "document": 0, "deploy": 0, "releas": [2, 3, 4, 5, 6, 7], "note": 2, "v0": [3, 4, 5, 6, 7], "1": [3, 4, 5, 6], "10": 3, "date": [3, 4, 5, 6, 7], "9": 3, "8": 3, "7": [3, 6], "6": [3, 4, 6], "5": [3, 4, 6, 7], "4": [3, 4, 5, 6], "3": [3, 4, 5, 6], "2": [3, 4, 5, 6], "0": [4, 5, 6, 7], "zerohertzlib": [8, 9, 10, 11, 12, 13, 14, 15, 16], "algorithm": 9, "api": 10, "log": 11, "mlop": 12, "monitor": 13, "plot": 14, "util": 15, "vision": 16}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx": 58}, "alltitles": {"CI/CD Pipelines": [[0, "ci-cd-pipelines"]], "Used Stacks": [[0, null]], "Jenkins": [[0, "jenkins"]], "Dev Branch": [[0, "dev-branch"]], "Branch Rule": [[0, null], [0, null]], "Chore Branch": [[0, "chore-branch"]], "GitHub Actions": [[0, "github-actions"]], "Managing Labels for Issues and Pull Requests in GitHub": [[0, "managing-labels-for-issues-and-pull-requests-in-github"]], "Sphinx Documentation Deployment": [[0, "sphinx-documentation-deployment"]], "Sphinx Documentation": [[0, null]], "Release Notes": [[2, "release-notes"]], "v0.1": [[3, "v0-1"]], "v0.1.10": [[3, "v0-1-10"]], "Release Date": [[3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [4, null], [4, null], [4, null], [4, null], [4, null], [4, null], [4, null], [4, null], [4, null], [4, null], [4, null], [5, null], [5, null], [5, null], [5, null], [5, null], [6, null], [6, null], [6, null], [6, null], [6, null], [6, null], [6, null], [6, null], [6, null], [7, null]], "v0.1.9": [[3, "v0-1-9"]], "v0.1.8": [[3, "v0-1-8"]], "v0.1.7": [[3, "v0-1-7"]], "v0.1.6": [[3, "v0-1-6"]], "v0.1.5": [[3, "v0-1-5"]], "v0.1.4": [[3, "v0-1-4"]], "v0.1.3": [[3, "v0-1-3"]], "v0.1.2": [[3, "v0-1-2"]], "v0.1.1": [[3, "v0-1-1"]], "v0.2": [[4, "v0-2"]], "v0.2.6": [[4, "v0-2-6"]], "v0.2.5": [[4, "v0-2-5"]], "v0.2.4": [[4, "v0-2-4"]], "v0.2.3": [[4, "v0-2-3"]], "v0.2.2": [[4, "v0-2-2"]], "v0.2.1": [[4, "v0-2-1"]], "v0.2.0": [[4, "v0-2-0"]], "v0.3": [[5, "v0-3"]], "v0.3.4": [[5, "v0-3-4"]], "v0.3.3": [[5, "v0-3-3"]], "v0.3.2": [[5, "v0-3-2"]], "v0.3.1": [[5, "v0-3-1"]], "v0.3.0": [[5, "v0-3-0"]], "v0.4": [[6, "v0-4"]], "v0.4.7": [[6, "v0-4-7"]], "v0.4.6": [[6, "v0-4-6"]], "v0.4.5": [[6, "v0-4-5"]], "v0.4.4": [[6, "v0-4-4"]], "v0.4.3": [[6, "v0-4-3"]], "v0.4.2": [[6, "v0-4-2"]], "v0.4.1": [[6, "v0-4-1"]], "v0.4.0": [[6, "v0-4-0"]], "v0.5": [[7, "v0-5"]], "v0.5.0": [[7, "v0-5-0"]], "zerohertzLib": [[8, "zerohertzlib"]], "zerohertzLib.algorithm": [[9, "module-zerohertzLib.algorithm"]], "Algorithm": [[9, null]], "zerohertzLib.api": [[10, "module-zerohertzLib.api"]], "API": [[10, null]], "zerohertzLib.logging": [[11, "module-zerohertzLib.logging"]], "Logging": [[11, null]], "zerohertzLib.mlops": [[12, "module-zerohertzLib.mlops"]], "MLOps": [[12, null]], "zerohertzLib.monitoring": [[13, "module-zerohertzLib.monitoring"]], "Monitoring": [[13, null]], "zerohertzLib.plot": [[14, "module-zerohertzLib.plot"]], "Plot": [[14, null]], "zerohertzLib.util": [[15, "module-zerohertzLib.util"]], "Util": [[15, null]], "zerohertzLib.vision": [[16, "module-zerohertzLib.vision"]], "Vision": [[16, null]]}, "indexentries": {"bfs() (in module zerohertzlib.algorithm)": [[9, "zerohertzLib.algorithm.bfs"]], "bisect_left() (in module zerohertzlib.algorithm)": [[9, "zerohertzLib.algorithm.bisect_left"]], "bisect_right() (in module zerohertzlib.algorithm)": [[9, "zerohertzLib.algorithm.bisect_right"]], "dfs() (in module zerohertzlib.algorithm)": [[9, "zerohertzLib.algorithm.dfs"]], "fft() (in module zerohertzlib.algorithm)": [[9, "zerohertzLib.algorithm.fft"]], "module": [[9, "module-zerohertzLib.algorithm"], [10, "module-zerohertzLib.api"], [11, "module-zerohertzLib.logging"], [12, "module-zerohertzLib.mlops"], [13, "module-zerohertzLib.monitoring"], [14, "module-zerohertzLib.plot"], [15, "module-zerohertzLib.util"], [16, "module-zerohertzLib.vision"]], "soe() (in module zerohertzlib.algorithm)": [[9, "zerohertzLib.algorithm.soe"]], "zerohertzlib.algorithm": [[9, "module-zerohertzLib.algorithm"]], "discord (class in zerohertzlib.api)": [[10, "zerohertzLib.api.Discord"]], "github (class in zerohertzlib.api)": [[10, "zerohertzLib.api.GitHub"]], "openai (class in zerohertzlib.api)": [[10, "zerohertzLib.api.OpenAI"]], "slackbot (class in zerohertzlib.api)": [[10, "zerohertzLib.api.SlackBot"]], "slackwebhook (class in zerohertzlib.api)": [[10, "zerohertzLib.api.SlackWebhook"]], "__call__() (zerohertzlib.api.github method)": [[10, "zerohertzLib.api.GitHub.__call__"]], "__call__() (zerohertzlib.api.openai method)": [[10, "zerohertzLib.api.OpenAI.__call__"]], "api_key (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.api_key"]], "audio (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.audio"]], "beta (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.beta"]], "chat (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.chat"]], "completions (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.completions"]], "edits (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.edits"]], "embeddings (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.embeddings"]], "file() (zerohertzlib.api.slackbot method)": [[10, "zerohertzLib.api.SlackBot.file"]], "files (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.files"]], "fine_tunes (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.fine_tunes"]], "fine_tuning (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.fine_tuning"]], "image() (zerohertzlib.api.discord method)": [[10, "zerohertzLib.api.Discord.image"]], "images (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.images"]], "message() (zerohertzlib.api.discord method)": [[10, "zerohertzLib.api.Discord.message"]], "message() (zerohertzlib.api.slackbot method)": [[10, "zerohertzLib.api.SlackBot.message"]], "message() (zerohertzlib.api.slackwebhook method)": [[10, "zerohertzLib.api.SlackWebhook.message"]], "model (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.model"]], "models (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.models"]], "moderations (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.moderations"]], "organization (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.organization"]], "release_note() (zerohertzlib.api.github method)": [[10, "zerohertzLib.api.GitHub.release_note"]], "with_raw_response (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.with_raw_response"]], "zerohertzlib.api": [[10, "module-zerohertzLib.api"]], "logger (class in zerohertzlib.logging)": [[11, "zerohertzLib.logging.Logger"]], "critical() (zerohertzlib.logging.logger method)": [[11, "zerohertzLib.logging.Logger.critical"]], "debug() (zerohertzlib.logging.logger method)": [[11, "zerohertzLib.logging.Logger.debug"]], "error() (zerohertzlib.logging.logger method)": [[11, "zerohertzLib.logging.Logger.error"]], "info() (zerohertzlib.logging.logger method)": [[11, "zerohertzLib.logging.Logger.info"]], "warning() (zerohertzlib.logging.logger method)": [[11, "zerohertzLib.logging.Logger.warning"]], "zerohertzlib.logging": [[11, "module-zerohertzLib.logging"]], "tritonclientk8s (class in zerohertzlib.mlops)": [[12, "zerohertzLib.mlops.TritonClientK8s"]], "tritonclienturl (class in zerohertzlib.mlops)": [[12, "zerohertzLib.mlops.TritonClientURL"]], "__call__() (zerohertzlib.mlops.tritonclientk8s method)": [[12, "zerohertzLib.mlops.TritonClientK8s.__call__"]], "__call__() (zerohertzlib.mlops.tritonclienturl method)": [[12, "zerohertzLib.mlops.TritonClientURL.__call__"]], "inputs (zerohertzlib.mlops.tritonclientk8s attribute)": [[12, "zerohertzLib.mlops.TritonClientK8s.inputs"]], "inputs (zerohertzlib.mlops.tritonclienturl attribute)": [[12, "zerohertzLib.mlops.TritonClientURL.inputs"]], "outputs (zerohertzlib.mlops.tritonclientk8s attribute)": [[12, "zerohertzLib.mlops.TritonClientK8s.outputs"]], "outputs (zerohertzlib.mlops.tritonclienturl attribute)": [[12, "zerohertzLib.mlops.TritonClientURL.outputs"]], "zerohertzlib.mlops": [[12, "module-zerohertzLib.mlops"]], "cpu() (in module zerohertzlib.monitoring)": [[13, "zerohertzLib.monitoring.cpu"]], "gpu_memory() (in module zerohertzlib.monitoring)": [[13, "zerohertzLib.monitoring.gpu_memory"]], "gpu_usages() (in module zerohertzlib.monitoring)": [[13, "zerohertzLib.monitoring.gpu_usages"]], "storage() (in module zerohertzlib.monitoring)": [[13, "zerohertzLib.monitoring.storage"]], "zerohertzlib.monitoring": [[13, "module-zerohertzLib.monitoring"]], "barh() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.barh"]], "barv() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.barv"]], "color() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.color"]], "hist() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.hist"]], "pie() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.pie"]], "plot() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.plot"]], "scatter() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.scatter"]], "table() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.table"]], "zerohertzlib.plot": [[14, "module-zerohertzLib.plot"]], "json (class in zerohertzlib.util)": [[15, "zerohertzLib.util.Json"]], "jsondir (class in zerohertzlib.util)": [[15, "zerohertzLib.util.JsonDir"]], "makedata (class in zerohertzlib.util)": [[15, "zerohertzLib.util.MakeData"]], "__getitem__() (zerohertzlib.util.json method)": [[15, "zerohertzLib.util.Json.__getitem__"]], "__getitem__() (zerohertzlib.util.jsondir method)": [[15, "zerohertzLib.util.JsonDir.__getitem__"]], "__len__() (zerohertzlib.util.json method)": [[15, "zerohertzLib.util.Json.__len__"]], "__len__() (zerohertzlib.util.jsondir method)": [[15, "zerohertzLib.util.JsonDir.__len__"]], "_get_key() (zerohertzlib.util.json method)": [[15, "zerohertzLib.util.Json._get_key"]], "_get_key() (zerohertzlib.util.jsondir method)": [[15, "zerohertzLib.util.JsonDir._get_key"]], "_get_value() (zerohertzlib.util.json method)": [[15, "zerohertzLib.util.Json._get_value"]], "condition() (zerohertzlib.util.makedata method)": [[15, "zerohertzLib.util.MakeData.condition"]], "data (zerohertzlib.util.jsondir attribute)": [[15, "zerohertzLib.util.JsonDir.data"]], "end_data_path (zerohertzlib.util.makedata attribute)": [[15, "zerohertzLib.util.MakeData.end_data_path"]], "end_json_path (zerohertzlib.util.makedata attribute)": [[15, "zerohertzLib.util.MakeData.end_json_path"]], "find_ext() (in module zerohertzlib.util)": [[15, "zerohertzLib.util.find_ext"]], "get() (zerohertzlib.util.json method)": [[15, "zerohertzLib.util.Json.get"]], "json (zerohertzlib.util.makedata attribute)": [[15, "zerohertzLib.util.MakeData.json"]], "keys (zerohertzlib.util.json attribute)": [[15, "zerohertzLib.util.Json.keys"]], "make() (zerohertzlib.util.makedata method)": [[15, "zerohertzLib.util.MakeData.make"]], "make_data() (zerohertzlib.util.makedata method)": [[15, "zerohertzLib.util.MakeData.make_data"]], "name (zerohertzlib.util.json attribute)": [[15, "zerohertzLib.util.Json.name"]], "name (zerohertzlib.util.jsondir attribute)": [[15, "zerohertzLib.util.JsonDir.name"]], "read_csv() (in module zerohertzlib.util)": [[15, "zerohertzLib.util.read_csv"]], "tree() (zerohertzlib.util.json method)": [[15, "zerohertzLib.util.Json.tree"]], "tree() (zerohertzlib.util.jsondir method)": [[15, "zerohertzLib.util.JsonDir.tree"]], "unique() (zerohertzlib.util.jsondir method)": [[15, "zerohertzLib.util.JsonDir.unique"]], "write_csv() (in module zerohertzlib.util)": [[15, "zerohertzLib.util.write_csv"]], "write_json() (in module zerohertzlib.util)": [[15, "zerohertzLib.util.write_json"]], "zerohertzlib.util": [[15, "module-zerohertzLib.util"]], "imageloader (class in zerohertzlib.vision)": [[16, "zerohertzLib.vision.ImageLoader"]], "jsonimageloader (class in zerohertzlib.vision)": [[16, "zerohertzLib.vision.JsonImageLoader"]], "__getitem__() (zerohertzlib.vision.imageloader method)": [[16, "zerohertzLib.vision.ImageLoader.__getitem__"]], "__getitem__() (zerohertzlib.vision.jsonimageloader method)": [[16, "zerohertzLib.vision.JsonImageLoader.__getitem__"]], "__len__() (zerohertzlib.vision.imageloader method)": [[16, "zerohertzLib.vision.ImageLoader.__len__"]], "__len__() (zerohertzlib.vision.jsonimageloader method)": [[16, "zerohertzLib.vision.JsonImageLoader.__len__"]], "bbox() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.bbox"]], "before_after() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.before_after"]], "cutout() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.cutout"]], "cwh2poly() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.cwh2poly"]], "cwh2xyxy() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.cwh2xyxy"]], "grid() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.grid"]], "image_paths (zerohertzlib.vision.imageloader attribute)": [[16, "zerohertzLib.vision.ImageLoader.image_paths"]], "img2gif() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.img2gif"]], "is_pts_in_poly() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.is_pts_in_poly"]], "json (zerohertzlib.vision.jsonimageloader attribute)": [[16, "zerohertzLib.vision.JsonImageLoader.json"]], "labelstudio2labelme() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.labelstudio2labelme"]], "labelstudio2yolo() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.labelstudio2yolo"]], "masks() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.masks"]], "pad() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.pad"]], "paste() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.paste"]], "poly2area() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.poly2area"]], "poly2cwh() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.poly2cwh"]], "poly2mask() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.poly2mask"]], "poly2ratio() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.poly2ratio"]], "poly2xyxy() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.poly2xyxy"]], "text() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.text"]], "transparent() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.transparent"]], "vert() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.vert"]], "vid2gif() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.vid2gif"]], "xyxy2cwh() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.xyxy2cwh"]], "xyxy2poly() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.xyxy2poly"]], "zerohertzlib.vision": [[16, "module-zerohertzLib.vision"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["cicd", "index", "release", "release/v0.1", "release/v0.2", "release/v0.3", "release/v0.4", "release/v0.5", "zerohertzLib", "zerohertzLib.algorithm", "zerohertzLib.api", "zerohertzLib.logging", "zerohertzLib.mlops", "zerohertzLib.monitoring", "zerohertzLib.plot", "zerohertzLib.util", "zerohertzLib.vision"], "filenames": ["cicd.md", "index.md", "release.md", "release/v0.1.md", "release/v0.2.md", "release/v0.3.md", "release/v0.4.md", "release/v0.5.md", "zerohertzLib.md", "zerohertzLib.algorithm.md", "zerohertzLib.api.md", "zerohertzLib.logging.md", "zerohertzLib.mlops.md", "zerohertzLib.monitoring.md", "zerohertzLib.plot.md", "zerohertzLib.util.md", "zerohertzLib.vision.md"], "titles": ["CI/CD Pipelines", "<no title>", "Release Notes", "v0.1", "v0.2", "v0.3", "v0.4", "v0.5", "zerohertzLib", "zerohertzLib.algorithm", "zerohertzLib.api", "zerohertzLib.logging", "zerohertzLib.mlops", "zerohertzLib.monitoring", "zerohertzLib.plot", "zerohertzLib.util", "zerohertzLib.vision"], "terms": {"black": [0, 4, 15], "flake8": [0, 6], "pylint": [0, 6], "setuptool": [0, 3], "pytest": [0, 3, 4, 6], "stage": [0, 4], "condit": [0, 15], "1": [0, 1, 2, 9, 10, 12, 13, 14, 15, 16], "setup": 0, "push": [0, 4], "2": [0, 1, 2, 9, 12, 14, 15, 16], "merg": [0, 4], "from": [0, 4], "doc": [0, 3, 4, 5, 6, 10, 15], "build": [0, 3, 4], "page": [0, 1], "3": [0, 1, 2, 9, 12, 14, 15, 16], "lint": [0, 6], "master": [0, 4], "pr": [0, 3, 4, 10], "except": [0, 5], "4": [0, 1, 2, 9, 10, 14, 16], "5": [0, 1, 2, 9, 14, 15, 16], "test": [0, 4, 5, 6, 10, 15, 16], "6": 0, "7": [0, 9, 12, 16], "deploi": [0, 4], "zerohertz": [0, 1, 10, 15], "The": 0, "i": [0, 14, 15, 16], "when": 0, "ar": 0, "function": 0, "chang": 0, "result": 0, "differ": 0, "outcom": 0, "commit": 0, "messag": [0, 10], "pars": 0, "check": 0, "format": [0, 3, 5, 6, 16], "python": [0, 10, 12, 15], "code": [0, 3, 6, 7], "instal": [0, 1, 7], "depend": 0, "packag": [0, 7, 15], "do": 0, "creat": [0, 10], "includ": 0, "gener": 0, "If": 0, "can": 0, "pypi": [0, 5], "util": [0, 1, 4, 5, 6, 8, 16], "assigne": [0, 10], "contain": 0, "event": 0, "titl": [0, 4, 10, 14, 15], "bug": 0, "fix": [0, 4, 10], "style": [0, 3, 4, 5, 6], "bodi": [0, 4, 10], "\uc218\uc815": [0, 3, 4, 5, 6], "labelstoadd": 0, "basebranch": 0, "headbranch": 0, "startswith": 0, "releas": [0, 1, 10, 15], "file": [0, 10, 14, 15, 16], "filenam": [0, 6, 15, 16], "workflow": 0, "zerohertzlib": [0, 1, 4, 5, 7], "module_nam": 0, "__init__": [0, 3, 4], "feat": [0, 4], "built": 0, "via": 0, "": [1, 12, 15, 16], "librari": 1, "sudo": 1, "apt": 1, "python3": [1, 15], "opencv": 1, "y": [1, 15], "pip": [1, 7], "api": [1, 3, 4, 5, 6, 7, 8], "mlop": [1, 3, 4, 7, 8], "all": [1, 7], "import": [1, 3], "zz": [1, 6, 9, 10, 11, 12, 13, 14, 15, 16], "algorithm": [1, 3, 6, 8], "log": [1, 3, 4, 6, 8], "monitor": [1, 3, 4, 8], "plot": [1, 3, 4, 5, 6, 8], "vision": [1, 3, 4, 5, 6, 8, 15], "note": [1, 4, 5, 10], "v0": [1, 2, 15], "ci": [1, 3, 4], "cd": [1, 4], "pipelin": [1, 3, 4], "jenkin": [1, 4], "github": [1, 3, 4, 6, 7, 8, 10], "action": [1, 4], "index": [1, 3, 9, 15, 16], "modul": [1, 15], "search": [1, 9, 10], "42": 3, "2023": [3, 4, 5, 6, 7, 11], "11": [3, 4, 5, 6, 7, 11], "14": [3, 4], "featur": [3, 4, 5, 6], "scatter": [3, 8, 14], "chart": 3, "\uc2dc\uac01\ud654": [3, 4, 5, 13, 14, 16], "\ud568\uc218": [3, 4, 5, 6, 9, 14, 15, 16], "\ucd94\uac00": [3, 4, 5, 6, 7], "pie": [3, 8, 13, 14], "chart\uc758": [3, 4], "label\uc5d0": 3, "\uc18c\uc218": [3, 9], "\uc790\ub9ac\uac00": 3, "\uc0dd\uae30\ub294": 3, "\ubb38\uc81c": [3, 4], "\ud574\uacb0": [3, 4], "resolv": [3, 4, 5, 6], "40": [3, 14, 16], "cv2": [3, 15, 16], "\uc758\uc874\uc131\uc774": 3, "\uc124\uce58\ub418\uc9c0": 3, "\uc54a\uc740": 3, "\uacbd\uc6b0\uc5d0\ub3c4": 3, "\uc0ac\uc6a9\ud560": [3, 6, 10, 14], "\uc218": [3, 5, 6, 7, 10, 11, 13, 14, 15, 16], "\uc788\ub3c4\ub85d": [3, 5, 6, 7], "\ubcc0\uacbd": [3, 4, 5, 6, 7, 16], "image\uc758": [3, 4, 5, 16], "\uc804\ud6c4": 3, "\ube44\uad50\ub97c": 3, "\uc704\ud55c": [3, 4, 6, 7, 9, 10, 12, 15], "before_aft": [3, 8, 16], "\uac1c\ubc1c": [3, 4, 5, 6], "\uc5ec\ub7ec": [3, 5, 14, 16], "image\ub97c": [3, 5, 6, 16], "\ud55c\ubc88\uc5d0": 3, "\uc694\uc57d\ud574": 3, "\ubcfc": 3, "\uc788\ub294": [3, 5, 6, 10, 11, 13, 14], "grid": [3, 6, 8, 16], "39": 3, "chore": [3, 4, 5, 6, 7], "issu": [3, 4, 10], "\ubc0f": [3, 4, 5, 6, 10, 14, 15, 16], "pr\uc758": [3, 4], "tag": 3, "\uc0dd\uc131": [3, 4, 5, 6, 10, 15, 16], "41": [3, 11], "35": [3, 14], "13": 3, "fast": [3, 9], "fourier": [3, 9], "transform": [3, 9], "fft": [3, 8, 9], "\ub97c": [3, 4, 5, 6, 9, 15, 16], "\uc218\ud589\ud558\ub294": [3, 6], "submodul": [3, 4], "\uc774\ub984": [3, 10, 11, 12, 14, 15, 16], "\uc785\ub825": [3, 5, 6, 9, 10, 12, 14, 15, 16], "\uacbd\ub85c\uc758": 3, "\uc6a9\ub7c9\uc744": [3, 13], "chart\ub85c": [3, 13, 14], "\uc2dc\uac01\ud654\ud558\ub294": [3, 4, 16], "storag": [3, 8, 13], "jenkins\uc758": [3, 7], "trigger": [3, 4], "34": 3, "sphinx": [3, 4, 6, 10], "\ub0b4": [3, 4, 5, 6, 12, 14, 15, 16], "exampl": [3, 6, 9, 10, 11, 12, 13, 14, 15, 16], "32": 3, "12": 3, "logger": [3, 6, 8, 11], "\uc758": [3, 4, 5, 6, 10, 11, 14, 16], "\ucd9c\ub825": [3, 10, 12, 14, 16], "\uc591\uc2dd": 3, "\uac00": [3, 10], "discord": [3, 4, 8, 10, 11], "webhook\uc744": [3, 10], "\uc774\uc6a9\ud560": [3, 6], "\uc788\uac8c": [3, 5], "\uae30\ud0c0": 3, "\ubb38\uc11c\uc758": [3, 4], "\uc624\ud0c0": [3, 5, 6], "26": 3, "07": [3, 11], "openai": [3, 5, 6, 8, 10], "package\uc758": 3, "update\ub85c": 3, "\uc758\uc874\uc131": [3, 4], "error": [3, 10, 11], "\ubc1c\uc0dd": [3, 4, 10], "25": [3, 16], "triton": [3, 12], "infer": [3, 12], "server\uc758": [3, 12], "client\ub97c": 3, "\uc190\uc27d\uac8c": 3, "class": [3, 4, 5, 6, 10, 11, 12, 15, 16], "tritonclienturl": [3, 8, 12], "tritonclientk8": [3, 8, 12], "\ubcc0\uc218\uba85": [3, 4, 5, 6], "28": [3, 6, 12], "shphinx": 3, "\uc601\ubb38": 3, "\uc124\uc815": [3, 6], "\uba85\uc2dc": 3, "23": [3, 6], "06": 3, "horizont": 3, "bar": [3, 14], "gif": [3, 16], "\ubcc0\ud658\uc744": 3, "img2gif": [3, 6, 8, 16], "vid2gif": [3, 6, 8, 16], "22": [3, 5, 6], "\uacfc\uc815\uc5d0\uc11c": 3, "\uc124\uce58": [3, 7], "codaci": 3, "20": [3, 4, 5, 10, 14, 16], "\uaddc\uaca9\ud654\ub41c": 3, "\ub370\uc774\ud130\uc758": 3, "\uc2dc\uac01\ud654\ub97c": 3, "hist": [3, 8, 14], "url": [3, 10, 11, 12, 15], "updat": [3, 4, 5, 6, 7, 13], "16": [3, 4], "templat": [3, 4], "\ubb38\uc11c": [3, 4, 5, 6], "\uc2dc": [3, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16], "branch": [3, 4], "\uc774\ub984\uc744": [3, 6, 15, 16], "parsing\ud558\uc5ec": 3, "\ubcc0\uacbd\ud558\ub3c4\ub85d": 3, "15": [3, 4, 13, 14, 16], "refactor": [3, 4, 5, 6], "openai\uc758": [3, 10], "gpt": [3, 10], "5\ub97c": 3, "\uc0ac\uc6a9\ud558\uae30": [3, 4, 10, 15], "api_kei": [3, 10], "webhook\uc5d0": 3, "\uba54\uc2dc\uc9c0\ub97c": 3, "\uc804\uc1a1\ud558\ub294": 3, "send_discord_messag": 3, "rst": [3, 4], "\uc5d0": [3, 4, 6, 9, 15, 16], "readm": 3, "md": [3, 4, 15], "\ub0b4\uc6a9": 3, "\uad6c\uc870": [3, 5], "05": 3, "df": [3, 8, 9], "bf": [3, 8, 9], "soe": [3, 8, 9], "commitmessag": 3, "\uc815\uc758\ud558\ub294": 3, "03": [3, 12], "py": [3, 15], "\ubc84\uc804": [3, 5], "\uc218\ub3d9": 3, "\uc5c5\ub370\uc774\ud2b8": 3, "insecure\ud55c": 3, "jenkins\uc5d0\uc11c": 3, "\ud6c4": [3, 6, 10, 15, 16], "\ubcc0\uacbd\uc0ac\ud56d\uc774": 3, "\uc874\uc7ac\ud558\uc9c0": [3, 15], "\uc54a\ub294": [3, 15], "\uac83\uc5d0": 3, "\ub300\ud55c": [3, 4, 5, 6, 10, 16], "\uc608\uc678": [3, 4, 5], "\ucc98\ub9ac": [3, 4, 10, 16], "legaci": [3, 6], "\uad6c\ucd95": [3, 5, 15, 16], "\ucd08\uae30": 3, "90": [4, 12], "jenkin\uc758": 4, "\uad6c\ub3d9": 4, "\uc870\uac74": [4, 6, 15], "notes\uc758": 4, "\uc6d0\ubcf8": [4, 16], "\ud30c\uc77c": 4, "sourc": [4, 10], "label": [4, 6, 10, 14, 15, 16], "control": 4, "83": 4, "\uc81c\uc791": 4, "\ud568\uc218\uc758": 4, "\uc77c\ubd80": 4, "logic": 4, "cpu\uc758": [4, 13], "\uc0ac\uc6a9\ub960\uc744": 4, "cpu": [4, 8, 13], "51": 4, "gpu\uc758": [4, 13], "\uc0ac\uc6a9\ub960": 4, "\uba54\ubaa8\ub9ac": 4, "\uc810\uc720\uc728\uc744": 4, "gpu_usag": [4, 8, 13], "\uc640": [4, 6, 15, 16], "gpu_memori": [4, 8, 13], "line": [4, 13, 14, 15], "xlim": [4, 14], "ylim": [4, 14], "ncol": [4, 14], "marker": 4, "index\ub97c": 4, "\ub118\ub294": 4, "case\ub97c": 4, "\ubc29\uc9c0\ud558\uae30": 4, "rule": 4, "\ud0a4\uc6cc\ub4dc\ub97c": 4, "\ud1b5\ud574": [4, 5, 10, 15, 16], "l": 4, "\uae30\ubc18": 4, "\uad00\ub9ac": 4, "\ubc29\ubc95\ub860": [4, 5], "\ubb38\uc11c\ud654": 4, "81": 4, "19": 4, "\ucf54\ub4dc": 4, "\ubb38\uc11c\uac00": 4, "\uc544\ub2cc": 4, "\uc8fc\uc11d": 4, "79": [4, 14], "type": [4, 9, 10, 12, 13, 14, 15, 16], "\ub300\uc2e0": 4, "isinst": 4, "\uc0ac\uc6a9": [4, 6, 10], "80": [4, 12], "badge\uc758": 4, "href": 4, "77": 4, "18": 4, "\ud45c\uc2dc\ub418\ub294": 4, "\uae4a\uc774": [4, 15], "stage\uc758": [4, 7], "pipeline\uc758": 4, "\uc124\uba85\uae00": 4, "sitemap": 4, "xml": 4, "add": 4, "logo": [4, 5], "74": 4, "17": 4, "73": [4, 14], "\ud45c": 4, "\uc124\uba85": [4, 5, 6], "\uae00": 4, "70": [4, 16], "69": 4, "json": [4, 5, 6, 8, 15, 16], "\ud615\uc2dd": [4, 15, 16], "\ud30c\uc77c\uc744": 4, "\uc77d\uace0": [4, 15], "jsondir": [4, 8, 15, 16], "\uac12\uc5d0": [4, 15], "\ub530\ub77c": [4, 13, 15, 16], "data\ub97c": [4, 6, 15, 16], "\uad6c\ucd95\ud558\ub294": [4, 15], "makedata": [4, 5, 8, 15], "\uac1d\uccb4": [4, 15], "csv": [4, 15], "tsv": [4, 15], "\uc791\uc131\ud558\ub294": [4, 15], "write_csv": [4, 8, 15], "write_json": [4, 8, 15], "controller\uc5d0": 4, "\uc81c\ubaa9": [4, 14], "\uc774\uc0c1": 4, "\ubc1c\uacac": 4, "\uc624\ub958": [4, 6], "\ub370\uc774\ud130": [4, 10, 14, 15], "hint": 4, "\ub204\ub77d": 4, "sphinxext": 4, "opengraph": 4, "\ud1b5\ud55c": [4, 5, 6], "meta": 4, "data": [4, 5, 10, 14, 15, 16], "67": 4, "notes\uc5d0\uc11c": 4, "title\uc774": 4, "\uae68\uc9c0\ub294": 4, "68": 4, "65": [4, 15], "\ud65c\uc6a9\uc744": 4, "62": 4, "note\uc758": 4, "\ubb38\uc11c\ud654\ub97c": 4, "method": [4, 5, 6, 15], "api\ub97c": [4, 10], "\uc790\ub3d9": 4, "63": 4, "\ube4c\ub4dc": 4, "61": 4, "59": 4, "theme": 4, "\ubcc0\uacbd\uc5d0": 4, "\ub530\ub978": [4, 13, 14, 15, 16], "56": 4, "\uac1d\uccb4\ud654": 4, "imag": [4, 5, 10, 12, 16], "\uc804\uc1a1": [4, 10], "50": [4, 14, 16], "\uc801\uc6a9": [4, 10, 11], "bbox": [4, 5, 6, 8, 16], "mask": [4, 5, 6, 8, 16], "text": [4, 5, 6, 8, 10, 16], "49": [4, 14], "bbox\uc5d0": [4, 5], "\uc804\ud658": 4, "xyxy2xywh": [4, 5], "xywh2xyxi": [4, 5], "resolut": 4, "\uac10\uc18c": 4, "pil": [4, 16], "57": 4, "\uac1d\uccb4\uc758": 4, "camel": [4, 6], "case": [4, 5], "numpi": [4, 5, 6, 16], "\ub354": [4, 11], "\uc0c1\uc138\ud55c": 4, "\uc791\uc131": [4, 15], "53": [4, 14], "\uac80\uc218": 4, "54": [4, 14, 15], "\ub09c\uc7a1\ud55c": 4, "\uc81c\uac70": 4, "46": 4, "\uae30\ub2a5": [4, 6], "45": 4, "105": 5, "seaborn": 5, "package\ub97c": 5, "\uc0c9\uc0c1\uc744": 5, "\uac04\ud3b8\ud558\uac8c": 5, "\ubd88\ub7ec\uc62c": [5, 15], "color": [5, 8, 14, 15, 16], "\ubaa8\ub4e0": 5, "graph\ub4e4\uc758": 5, "\uc800\uc7a5": [5, 13, 14, 16], "\ubc29\uc2dd\uc744": 5, "_save": 5, "\ud568\uc218\ub85c": 5, "\ud68d\uc77c\ud654": [5, 6], "\ubc29\ubc95\uc744": 5, "\uc815\uc758\ud560": 5, "\ud568\uc218\uac00": 5, "\ub2e8\uc77c": [5, 14, 16], "poli": [5, 6, 15, 16], "\uc720\ud615\uc5d0\ub3c4": 5, "\uc2dc\uac01\ud654\ud560": [5, 13], "\ud655\uc7a5": 5, "\uc785\ub825\ub41c": [5, 6, 15], "\uc774\ubbf8\uc9c0\ub4e4\uc744": 5, "\uac00\ub85c\ub85c": 5, "\ub098\uc5f4\ud558\ub294": 5, "vert": [5, 6, 8, 16], "\ud30c\uc77c\uacfc": 5, "\ud568\uaed8": 5, "jsonimageload": [5, 6, 8, 16], "\uc9c0\uc810\ub4e4\uc758": [5, 16], "\uc88c\ud45c": [5, 6, 16], "\uc874\uc7ac": [5, 15, 16], "\uc5ec\ubd80": [5, 10, 14, 15, 16], "\ud655\uc778": [5, 16], "isptsinpoli": 5, "submodule\uc758": [5, 7], "bgra": [5, 6, 16], "\uc785\ub825\uc5d0": 5, "\ub2e8\uc21c": 5, "\uc73c\ub85c": [5, 15], "\ud45c\uae30\ud588\ub358": 5, "\ucc98\ub9ac\uc758": 5, "103": 5, "\ub0b4\ubd80": [5, 16], "\uc608\uc2dc": 5, "\ud55c\uae00": 5, "\uc601\uc5b4\uc758": 5, "100": [5, 13, 15, 16], "21": [5, 11], "\ud568\uc218\uc5d0": [5, 6], "\ub300\ud574": [5, 6, 10, 16], "\ub370\uc774\ud130\ub97c": [5, 14], "\ubc1b\uc744": 5, "\ubcc0\ud658": [5, 6, 9, 16], "cwh2xyxi": [5, 8, 16], "cwh2poli": [5, 8, 16], "xyxy2cwh": [5, 8, 16], "xyxy2poli": [5, 8, 16], "poly2cwh": [5, 8, 16], "poly2xyxi": [5, 8, 16], "\ub2e4\uac01\ud615": [5, 16], "\uc88c\ud45c\ub97c": [5, 16], "\ubc30\uc5f4\ub85c": 5, "\ubcc0\ud658\ud558\ub294": [5, 6, 16], "poly2mask": [5, 8, 16], "\ub0b4\uc5d0\uc11c": [5, 16], "\uc9c0\uc815\ud55c": [5, 6, 13, 16], "\uc81c\uc678\ud55c": [5, 16], "\ubd80\ubd84\uc744": [5, 16], "\ud22c\uba85\ud654\ud558\uace0": 5, "\uc120\ud0dd\uc801\uc73c\ub85c": 5, "crop": [5, 16], "\ud560": [5, 6, 7, 16], "cutout": [5, 8, 15, 16], "alpha": [5, 16], "channel\uc774": 5, "\uc874\uc7ac\ud558\ub294": [5, 6, 9, 13, 15, 16], "\uc6d0\ud558\ub294": [5, 6, 16], "\uc704\uc5d0": [5, 16], "\ud22c\uba85\ub3c4\ub97c": [5, 16], "\ud3ec\ud568\ud558\uc5ec": [5, 16], "\ubcd1\ud569\ud558\ub294": 5, "past": [5, 6, 8, 15, 16], "\uc608\uc81c": 5, "99": 5, "licens": 5, "classifi": 5, "x0": [5, 16], "y0": [5, 16], "x1": [5, 16], "y1": [5, 16], "\ud45c\uae30": [5, 14], "\uc21c\uc11c": [5, 9], "badg": 5, "\ub780\uc5d0": 5, "cwh": [5, 16], "xyxi": [5, 16], "\ud3ed": 5, "97": 5, "csv\ub97c": 5, "\uc77d\uc5b4\uc624\ub294": [5, 6], "\uc77c\ubc18\ud654": 5, "pypi\uc5d0": 5, "e": 5, "mail": 5, "95": 5, "pypi\uc758": 5, "93": 5, "caption": 5, "content": 5, "\uc0ad\uc81c": [5, 15], "125": 6, "29": [6, 7], "data\uc5d0": 6, "\ud45c\ub97c": 6, "\uc0dd\uc131\ud558\uace0": 6, "image\ub85c": [6, 16], "tabl": [6, 8, 14], "labelstudio2labelm": [6, 8, 16], "123": [6, 14], "binari": [6, 9], "search\ub97c": 6, "bisect_right": [6, 8, 9], "bisect_left": [6, 8, 9], "\ud638\ucd9c": [6, 10, 12, 16], "prompt\ub97c": 6, "slack": [6, 10, 11], "webhook": [6, 10, 11], "bot\uc744": [6, 10], "slackwebhook": [6, 8, 10], "slackbot": [6, 8, 10], "class\uac00": 6, "slack\uc744": 6, "\uacbd\ub85c": [6, 10, 13, 15, 16], "file\ub4e4\uc758": [6, 15, 16], "\ud655\uc7a5\uc790\ub97c": [6, 15], "\ud0d0\uc0c9\ud558\ub294": 6, "find_ext": [6, 8, 15], "font_siz": [6, 14, 16], "\uc9c0\uc815\ud560": [6, 16], "studio\ub85c": [6, 16], "annotation\ub41c": 6, "yolo": [6, 12, 16], "labelm": [6, 16], "format\uc73c\ub85c": [6, 16], "labelstudio2yolo": [6, 8, 16], "\ub300\uc18c\ubb38\uc790": 6, "\ud45c\uae30\ubc95": 6, "121": 6, "27": [6, 14, 16], "is_pts_in_poli": [6, 8, 16], "box": [6, 15, 16], "\ud45c\ud604": 6, "119": 6, "24": 6, "image\uc5d0": [6, 16], "threshold": [6, 13, 16], "\ubbf8\ub9cc\uc758": [6, 16], "pixel\ub4e4\uc744": [6, 16], "\ud22c\uba85\ud654\ud558\ub294": 6, "transpar": [6, 8, 16], "117": [6, 14], "\ubc30\uc5f4\uc744": 6, "\uc785\ub825\uc73c\ub85c": 6, "\ubc1b\uc740": 6, "\ud568\uc218\ub4e4\uc5d0": 6, "list": [6, 9, 10, 12, 14, 15, 16], "\ud5c8\uc6a9": 6, "\ud22c\uba85\ub3c4": [6, 16], "\uc870\uc808\uacfc": 6, "gaussian": [6, 16], "blur\ub97c": 6, "\uc790\uc5f0\uc2a4\ub7ec\uc6b4": [6, 16], "\ud569\uc131": 6, "\uc0c9\uc0c1": 6, "actions\ub97c": 6, "\uaddc\uce59": 6, "115": 6, "__len__": [6, 15, 16], "\ub2e4\uac01\ud615\uc758": [6, 16], "\uba74\uc801": [6, 16], "\ub300\ube44": [6, 16], "\ube44\uc728\uc744": [6, 16], "\uacc4\uc0b0\ud558\ub294": 6, "poly2area": [6, 8, 16], "poly2ratio": [6, 8, 16], "image\ub4e4\uc744": [6, 16], "\uc218\ub7c9\ub9cc\ud07c": 6, "imageload": [6, 8, 16], "module\uc758": 6, "typo": 6, "113": 6, "stage\uc5d0": 6, "pad": [6, 8, 16], "\ubcc0\uc218": [6, 14], "111": 6, "return": [6, 9, 10, 12, 13, 14, 15, 16], "padding\uc744": 6, "\ud65c\uc6a9\ud558\ub294": 6, "_make_text": 6, "\ub4e4\uc5d0": 6, "\uc800\uc7a5\ud558\ub294": 6, "\ud30c\uc77c\uc758": 6, "\ub098\ud0c0\ub0b4\ub294": [6, 15, 16], "output_filenam": 6, "module\uc5d0": 6, "examples\uc758": 6, "109": 6, "timeout": 6, "108": 6, "case\uc640": 6, "snake": 6, "case\ub85c": 6, "\ub09c\uc7a1\ud558\uac8c": 6, "\uc815\uc758\ub41c": 6, "\ubcc0\uc218\uba85\uc744": 6, "pascal": 6, "107": 6, "129": 7, "pytest\ub97c": 7, "credenti": 7, "\uc804\uccb4": 7, "127": 7, "dependency\uac00": 7, "\ud070": 7, "submodule\uc744": 7, "\uc120\ubcc4\uc801": 7, "\uc124\uce58\ub97c": 7, "barh": [8, 14], "barv": [8, 14], "read_csv": [8, 15], "algorithm\uacfc": 9, "\uad00\ub828\ub41c": 9, "\ub2e4\uc591\ud55c": [9, 10, 14, 15, 16], "\ud568\uc218\ub4e4": [9, 13, 14], "map": 9, "start": 9, "bfs\ub97c": 9, "\uc218\ud589\ud558\uae30": 9, "paramet": [9, 10, 11, 12, 13, 14, 15, 16], "int": [9, 10, 11, 12, 13, 14, 15, 16], "graph": [9, 13, 14], "graph\uc758": [9, 14], "\uc2dc\uc791": 9, "\uc9c0\uc810": 9, "\ubc29\ubb38": 9, "sorted_list": 9, "valu": [9, 15], "left": 9, "union": [9, 14, 16], "float": [9, 14, 16], "\uc815\ub82c\ub41c": 9, "\ucc3e\uace0\uc790\ud558\ub294": 9, "\uac12": [9, 15, 16], "\uac12\uc774": 9, "\uc0bd\uc785\ub420": 9, "\ub54c": 9, "right": 9, "dfs\ub97c": 9, "sig": 9, "inv": 9, "fals": [9, 10, 14, 15, 16], "complex": 9, "\uc2e0\ud638": [9, 10], "\ubcf5\uc18c\uc218": 9, "option": [9, 10, 11, 12, 13, 14, 15, 16], "bool": [9, 10, 14, 15, 16], "\ubc29\ud5a5\uc744": 9, "\uc9c0\uc815": 9, "\uc815\ubc29\ud5a5": 9, "true": [9, 10, 14, 15, 16], "\uc5ed\ubc29\ud5a5": 9, "\ubcc0\ud658\ub41c": 9, "\uacb0\uacfc": [9, 10, 12, 16], "0": [9, 10, 14, 15, 16], "0j": 9, "n_max": 9, "siev": 9, "eratosthen": 9, "\uad6c\ud558\uace0\uc790": 9, "\ud558\ub294": 9, "\ubc94\uc704\uc758": 9, "\ucd5c\ub313\uac12": 9, "n\uae4c\uc9c0": 9, "10": [9, 11, 12, 13, 14, 16], "\uc27d\uac8c": [10, 11], "class\ub4e4": [10, 12, 15, 16], "webhook_url": 10, "base": [10, 11, 12, 15, 16], "object": [10, 11, 12, 15, 16], "webhook\uc758": [10, 11], "\uc804\uc1a1\uc744": 10, "str": [10, 11, 12, 13, 14, 15, 16], "http": 10, "com": 10, "image_path": [10, 16], "\uc804\uc1a1\ud560": [10, 11], "\uc751\ub2f5": 10, "request": 10, "model": [10, 12], "respons": 10, "jpg": [10, 15], "200": [10, 14, 16], "gap": 10, "codeblock": 10, "\uac04": [10, 16], "\uac04\uaca9": [10, 16], "1500\uc790": 10, "\uc774\ub0b4\ub77c\uba74": 10, "\uc804\uc1a1\ub418\ub294": 10, "message\uc758": 10, "\uc2a4\ud0c0\uc77c": 10, "204": 10, "user": [10, 15], "repo": [10, 15], "token": [10, 11], "none": [10, 11, 12, 13, 14, 15, 16], "\ud638\ucd9c\ud560": [10, 12], "repositori": 10, "github\uc758": 10, "onli": 10, "__call__": [10, 12], "\uc218\ud589": [10, 12], "lab": 10, "\uc120\ud0dd\ud560": 10, "repository\uc758": 10, "per_pag": 10, "1\ud68c": 10, "\ucd9c\ub825\ub420": [10, 14, 15, 16], "\uacb0\uacfc\uc758": 10, "dict": [10, 12, 14, 15, 16], "ani": [10, 12, 15], "gh": 10, "ghp_": 10, "len": [10, 14, 15, 16], "kei": [10, 15, 16], "dict_kei": 10, "repository_url": 10, "labels_url": 10, "comments_url": 10, "events_url": 10, "html_url": 10, "id": [10, 15], "node_id": 10, "number": 10, "state": 10, "lock": 10, "mileston": 10, "comment": 10, "created_at": 10, "updated_at": 10, "closed_at": 10, "author_associ": 10, "active_lock_reason": 10, "reaction": 10, "timeline_url": 10, "performed_via_github_app": 10, "state_reason": 10, "release_not": 10, "name": [10, 12, 15, 16], "sphinx_source_path": 10, "directory\uc758": 10, "sphinx\uc758": 10, "o": [10, 15], "path": [10, 13, 15, 16], "join": [10, 15], "client": 10, "instanc": [10, 15], "\uacf5\uc2dd": 10, "\ucc38\uace0": 10, "\uc704\uc640": 10, "\uac19\uc774": [10, 15, 16], "page\uc5d0\uc11c": 10, "\ubc1c\uae09": 10, "\ub4f1\ub85d\ud574\uc57c": 10, "\uc788\ub2e4": [10, 15], "\uc704\uc5d0\uc11c": 10, "\ub4f1\ub85d\ud55c": 10, "\uac00\ub2a5\ud55c": 10, "model\uc758": [10, 12], "\uc0ac\uc6a9\ub420": [10, 12], "prompt": 10, "\uc120\ud0dd": 10, "stream": 10, "\uc751\ub2f5\uc758": 10, "\uc2e4\uc2dc\uac04": 10, "\ud638\ucd9c\ub41c": [10, 12], "sk": 10, "syncpag": 10, "babbag": 10, "001": 10, "1651172509": 10, "owned_bi": 10, "dev": [10, 15], "1687882411": 10, "gpt3": 10, "gpt4": 10, "zerohertzlib\uc5d0": 10, "\uc124\uba85\ud574": 10, "zerohertzlib\ub294": 10, "\uc624\ud508": 10, "\uc18c\uc2a4": 10, "\ud504\ub85c\uc81d\ud2b8\ub85c": 10, "\uc774": 10, "\ub77c\uc774\ube0c\ub7ec\ub9ac\ub294": 10, "matlab": 10, "\uc5b8\uc5b4\ub85c": 10, "\uc791\uc131\ub418\uc5c8\uc73c\uba70": 10, "zerohertzlib\uc740": 10, "package\uc57c": 10, "\ud1b5\uc2e0": [10, 12], "\uc2dc\uc2a4\ud15c\uc5d0": 10, "\ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4": 10, "kubernetes\uc5d0": 10, "kubernetes\ub294": 10, "\ucee8\ud14c\uc774\ub108\ud654\ub41c": 10, "\uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744": 10, "\uc790\ub3d9\ud654\ud558\uace0": 10, "\uad00\ub9ac\ud558\uae30": 10, "\uc624\ud508\uc18c\uc2a4": 10, "\ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4": 10, "audio": 10, "beta": 10, "chat": 10, "complet": 10, "edit": 10, "embed": 10, "fine_tun": 10, "moder": 10, "organ": 10, "with_raw_respons": 10, "channel": [10, 11], "icon_emoji": 10, "icon_url": 10, "bot\uc758": [10, 11], "bot\uc774": [10, 11], "\ud45c\uc2dc\ub420": [10, 14], "\uc0ac\uc9c4": [10, 16], "emoji": 10, "photo": 10, "xoxb": 10, "sparkl": 10, "product": 10, "asset": 10, "6210df": 10, "s3": 10, "amazonaw": 10, "42334717": 10, "284166558": 10, "0ba4b755": 10, "39cc": 10, "48ee": 10, "ba3b": 10, "5c02f54c4ca7": 10, "png": [10, 15, 16], "\uacfc": 10, "icon_": 10, "\ubd88\uac00": 10, "hook": 10, "servic": 10, "ghost": 10, "\ub610\ub294": [11, 14, 16], "file\uc5d0": [11, 13, 15], "log\ub97c": 11, "\uc791\uc131\ud560": 11, "logger_nam": 11, "file_nam": 11, "logger_level": 11, "console_level": 11, "file_level": 11, "\uc774\uc058\uac8c": 11, "\ucc0d\uc5b4\ubcf4\ub294": 11, "\uc608\ubed0\uc9c0\uace0": 11, "\uc2f6\uc2b5\ub2c8\ub2e4": 11, "logger\uc758": 11, "file\uc758": [11, 14, 15, 16], "\ubbf8\uc785\ub825": 11, "\ubbf8\ucd9c\ub825": 11, "\ud639\uc740": [11, 15, 16], "getlogg": 11, "level": 11, "streamhandl": 11, "filehandl": 11, "test_1": 11, "debug": 11, "36": [11, 14], "505": 11, "info": [11, 16], "warn": 11, "critic": 11, "mlops\uc5d0\uc11c": 12, "\uc0ac\uc6a9\ub418\ub294": 12, "svc_name": 12, "namespac": 12, "model_nam": 12, "port": 12, "8001": 12, "kubernetes\uc5d0\uc11c": 12, "\uc2e4\ud589\ub418\ub294": 12, "\ud638\ucd9c\uc744": 12, "kubernet": 12, "service\uc758": 12, "server": 12, "grpc": 12, "\ubc88\ud638": 12, "input": [12, 16], "\uc9c0\uc815\ub41c": 12, "output": 12, "arg": 12, "ndarrai": [12, 16], "dtypelik": [12, 16], "self": [12, 15], "kubectl": 12, "get": [12, 15], "svc": 12, "n": [12, 16], "cluster": 12, "ip": 12, "extern": 12, "ag": 12, "fastapi": 12, "clusterip": 12, "106": 12, "72": 12, "126": 12, "tcp": 12, "96": 12, "172": [12, 14], "docker": 12, "exec": 12, "api_contain": 12, "bash": 12, "tc": 12, "data_typ": 12, "type_fp32": 12, "dim": [12, 14], "640": 12, "output0": 12, "25200": 12, "85": 12, "np": [12, 14, 15, 16], "zero": [12, 16], "arrai": [12, 15, 16], "90108061e": 12, "00": [12, 15, 16], "51982164e": 12, "49971962e": 12, "21481919e": 12, "17585063e": 12, "36753917e": 12, "dtype": [12, 16], "float32": 12, "\uc678\ubd80\uc5d0\uc11c": 12, "localhost": 12, "\ud604\uc7ac": [13, 14, 15, 16], "\uae30\uae30\uc758": 13, "\uc0c1\ud0dc\ub97c": 13, "\uc0b4\ud3b4\ubcfc": 13, "tick": 13, "dpi": [13, 14], "\uc2dc\uac04\uc5d0": 13, "\uc0ac\uc6a9\ub7c9\uc744": 13, "\uac01": [13, 14], "\ucf54\uc5b4\uc5d0": 13, "\uc8fc\uae30": 13, "\ucd1d": 13, "\uc2dc\uac04": [13, 14], "graph\ub97c": 13, "\uc800\uc7a5\ud560": 13, "dot": [13, 14], "per": [13, 14, 16], "inch": [13, 14], "\uacbd\ub85c\uc5d0": [13, 15], "\ubc14\ub85c": [13, 14, 16], "gpu": 13, "memori": 13, "gpu\uc5d0": 13, "usag": 13, "graph\ub85c": 13, "etc": 13, "\ub85c": [13, 15, 16], "\ubd84\ub958\ub420": 13, "\uc784\uacc4\uac12": 13, "\ub2e8\uc704": [13, 14, 16], "\ubcc0\uc218\ub4e4\uc744": 14, "\ucd5c\ub300\ud55c": 14, "\uc9c0\uc815\ud558\uc9c0": 14, "\uc54a\uace0": 14, "xlab": 14, "\ube48\ub3c4": 14, "ylab": 14, "tmp": [14, 15, 16], "ratio": 14, "300": [14, 15, 16], "rot": 14, "dictionary\ub85c": 14, "\uc785\ub825\ubc1b\uc740": 14, "\uc138\ub85c": 14, "graph\uc5d0": 14, "x\ucd95": 14, "y\ucd95": 14, "tupl": [14, 16], "\uac00\ub85c": [14, 16], "\uae38\uc774": [14, 15], "x\ucd95\uc758": 14, "\ub208\uae08": 14, "\ud68c\uc804": 14, "\uac01\ub3c4": 14, "\uc0c1\ub2e8\uc5d0": 14, "percentag": 14, "\ud45c\uc2dc": [14, 16], "directory\uc5d0": [14, 16], "\ud14c\ub780": [14, 15], "\uc800\uadf8": [14, 15], "\ud504\ub85c\ud1a0\uc2a4": [14, 15], "30": [14, 16], "\uc778\uad6c": 14, "\uba85": 14, "\uc885\uc871": [14, 15], "star": 14, "craft": 14, "cnt": [14, 16], "rand": 14, "uint8": [14, 16], "\uc0c9": [14, 16], "\ucd94\ucd9c": 14, "\ucd94\ucd9c\ud560": 14, "\uc0c9\uc758": 14, "random": [14, 15, 16], "\uc0c9\uc0c1\uc758": 14, "list\ub85c": 14, "\uad6c\uc131\ub41c": [14, 16], "9710194877714075": 14, "4645444048369612": 14, "21958695134807432": 14, "9677975592919913": 14, "44127456009157356": 14, "5358103155058701": 14, "5920891529639701": 14, "6418467016378244": 14, "1935069134991043": 14, "21044753832183283": 14, "6773105080456748": 14, "6433941168468681": 14, "6423044349219739": 14, "5497680051256467": 14, "9582651433656727": 14, "22420518847992715": 14, "6551391052055489": 14, "8272616286387289": 14, "21125140522513897": 14, "6760830215342485": 14, "6556099802889619": 14, "9590000285927794": 14, "36894286394742526": 14, "9138608732554839": 14, "167": 14, "246": 14, "112": 14, "136": 14, "150": 14, "163": 14, "164": 14, "140": 14, "244": 14, "247": 14, "160": 14, "171": 14, "176": 14, "110": 14, "ovp": 14, "histogram\uc73c\ub85c": 14, "bin\uc758": 14, "\uac1c\uc218": 14, "class\uc5d0": [14, 16], "histogram": 14, "overlap": 14, "1000": [14, 16], "\uc131\uc801": 14, "\uc810": 14, "\uc778\uc6d0": 14, "int_label": 14, "\uc218\uce58\uc758": 14, "\uc18c\uc218\uc810": 14, "xdata": 14, "ydata": 14, "list\uc640": [14, 15, 16], "limit": 14, "legend": 14, "\uc5f4\uc758": 14, "rang": [14, 16], "\ucd08": 14, "size": [14, 15, 16], "plot\uc73c\ub85c": 14, "marker\uc758": 14, "\ud06c\uae30": [14, 16], "400": [14, 16], "\ube44\uc6a9": 14, "\ubbf8\ub124\ub784": 14, "\uc804\ud22c\ub825": [14, 15], "col": 14, "row": 14, "8": [14, 15, 16], "x": [14, 15], "\ud06c\uae30\ub97c": 14, "\uac00\uc9c0\ub294": 14, "\uc5f4": 14, "column": 14, "\ud589": 14, "\ubb38\uc790\uc758": [14, 16], "\uc800\uc7a5\ub420": [14, 16], "test1": 14, "test2": 14, "test3": 14, "test4": 14, "craft2": 14, "format\uc758": 15, "hadling\ud558\ub294": 15, "file\uc744": [15, 16], "\uc785\ub825\ud558\uc9c0": 15, "\uc54a\uc744": 15, "\uacbd\ub85c\ub85c": 15, "\uc785\ub825\ud558\uba74": 15, "\ud574\ub2f9": 15, "\uc77d\ub294\ub2e4": 15, "\uc9c1\ub82c\ud654\ub41c": 15, "json\uc758": 15, "\uac12\ub4e4": 15, "\uc77d\uc5b4\uc628": [15, 16], "__getitem__": [15, 16], "file\uc5d0\uc11c": 15, "key\uc5d0": 15, "_get_kei": 15, "key\uc758": 15, "\uacbd\ub85c\ub97c": 15, "\ucc3e\uc544\uc8fc\ub294": 15, "\ubb34\uad00": 15, "\uae4a\uc774\ub97c": 15, "\ud45c\uc2dc\ud55c": 15, "_get_valu": 15, "\uc0dd\uc131\ub41c": 15, "\uac12\uc744": 15, "\ubc1b\uc544": 15, "j": [15, 16], "languag": 15, "head": 15, "login": 15, "traceback": 15, "most": 15, "recent": 15, "call": 15, "last": 15, "stdin": 15, "home": 15, "anaconda3": 15, "lib": 15, "site": 15, "keyerror": 15, "tree": [15, 16], "\uad6c\uc870\ub97c": 15, "\ucd9c\ub825\ud558\ub294": 15, "file\ub4e4\uc744": [15, 16], "\uc774\ub984\ub4e4": 15, "\uc774\ub984\uc5d0": 15, "\ubc30\uc5f4": 15, "idx": [15, 16], "index\uc5d0": [15, 16], "jsd": 15, "3640": 15, "26it": 15, "0x7f2562b83d00": 15, "uniqu": 15, "\ub370\uc774\ud130\ub4e4\uc758": 15, "\uc720\uc77c\ud55c": 15, "return\ud558\ub294": [15, 16], "\uac12\ub4e4\uc758": 15, "\uc9d1\ud569": 15, "set": 15, "sha": 15, "dfd53a0bfc73221dbe96d5e44a49c524d5a8596b": 15, "bc33235424e89cbbf23434b2a824ea068d167c7d": 15, "97f52f9b81ba885fe69b9726632e580f5cba94b": 15, "768c7711f94af0be00cd55e0ce7b892465cfa64a": 15, "97e103788359f0361f4ec0e138a14218f28eddd4": 15, "start_data_path": 15, "start_json_path": 15, "json_kei": [15, 16], "target_path": [15, 16], "end_data_dir": 15, "end_json_dir": 15, "\ubaa9\ud45c": [15, 16], "data\uac00": [15, 16], "directori": [15, 16], "file\uc774": [15, 16], "datapath": 15, "\uc5d0\uc11c": [15, 16], "data\uc758": [15, 16], "\uad6c\ucd95\ub420": 15, "\uc77d\uc5b4": [15, 16], "\ud65c\uc6a9": [15, 16], "end_data_path": 15, "end_json_path": 15, "json_inst": 15, "filter": 15, "\ub420": 15, "instance\uc758": 15, "\uc815\ubcf4": [15, 16], "\ud3ec\ud568": 15, "\uc544\ub798\uc640": 15, "\uc0c1\uc18d\uc744": 15, "\uc870\uac74\uc744": 15, "\uc124\uc815\ud560": 15, "makedatacar": 15, "def": 15, "supercategory_nam": 15, "categori": 15, "citycar": 15, "mid": 15, "car": 15, "make": 15, "makedatacardamag": 15, "annot": 15, "white": 15, "make_data": 15, "data_nam": 15, "img": [15, 16], "imread": 15, "ant": 15, "enumer": 15, "damag": 15, "segment": 15, "h": [15, 16], "w": [15, 16], "_": [15, 16], "shape": [15, 16], "split": 15, "f": 15, "xm": 15, "ym": 15, "min": 15, "imwrit": 15, "tolist": 15, "makedatacaraug": 15, "choic": 15, "glob": 15, "target": [15, 16], "imread_unchang": 15, "randrang": [15, 16], "\uc2e4\ud589": 15, "\uc9c4\ud589": 15, "403559": 15, "7369": 15, "96it": 15, "01": 15, "04": [15, 16], "6292": 15, "39it": 15, "\ubc29\ubc95": 15, "\uc815\uc758": 15, "\uc758\ud574": 15, "\ucd9c\ub825\ub41c": 15, "\ubcf8": 15, "\ud568\uc218\ub97c": 15, "\ud655\uc7a5\uc790\uc758": 15, "\ud0d0\uc0c9": 15, "\ucc3e\uc744": 15, "\ud655\uc7a5\uc790\uc5d0": 15, "defaultdict": 15, "mov": 15, "header": 15, "comma": 15, "separ": 15, "tab": 15, "\uc785\ub825\ub420": 15, "header\uc758": 15, "\uc720\ubb34": 15, "\uae30\ubc18\uc73c\ub85c": [15, 16], "column\uc5d0": 15, "\uad6c\uc131": 15, "header\uac00": 15, "\uacbd\uc6b0": 15, "\ubd80\ud130": 15, "\ucc28\ub840\ub300\ub85c": 15, "star_craft": 15, "5hi9": 15, "gor2": 15, "gk03": 15, "\uc810\uc218": 15, "1248": 15, "2309": 15, "291": 15, "\uc808\ub300": 15, "javascript": 15, "notat": 15, "\uc744": 15, "4169": 15, "4209": 15, "\uc544\ubb34": 15, "\uac70\ub098": 15, "handling\ud558\uace0": 16, "bbox\uc758": 16, "cx": 16, "cy": 16, "x2": 16, "y2": 16, "x3": 16, "y3": 16, "\uacbd\ub85c\uc640": 16, "\uc218\ub97c": 16, "\uc9c0\uc815\ud558\uc5ec": 16, "image\ub4e4\uc774": 16, "image\ub4e4\uc758": 16, "\ud574\ub2f9\ud558\ub294": 16, "il": 16, "data_path": 16, "json_path": 16, "image\uc640": 16, "\uc815\ubcf4\ub97c": 16, "\ubd88\ub7ec\uc624\ub294": 16, "jil": 16, "17248": 16, "3581": 16, "22it": 16, "600": 16, "800": 16, "date_cr": 16, "255": 16, "thick": 16, "c": 16, "\ud558\ub098": 16, "\uac1c\uc758": 16, "\uc120\uc758": 16, "\ub450\uaed8": 16, "1200": 16, "res1": 16, "250": 16, "900": 16, "res2": 16, "befor": 16, "after": 16, "area": 16, "qualiti": 16, "\ub450": 16, "\ube44\uad50\ud558\ub294": 16, "\uc601\uc0c1": 16, "\ubaa8\ub378": 16, "\ucd94\ub860": 16, "\ube44\uad50\ud560": 16, "x_0": 16, "y_0": 16, "x_1": 16, "y_1": 16, "\ubc31\ubd84\uc728": 16, "bgr": 16, "grai": 16, "gaussianblur": 16, "cvtcolor": 16, "color_bgr2grai": 16, "resiz": 16, "60": 16, "background": 16, "\ud22c\uba85\ud654": 16, "\uc601\uc5ed\uc758": 16, "\uc678": 16, "\ubc30\uacbd\uc758": 16, "1100": 16, "128": 16, "res3": 16, "75": 16, "\uc785\ub825\ubc1b\uc544": 16, "\ud55c": 16, "\uc815\ubc29\ud615": 16, "\ubcd1\ud569": 16, "padding\uc758": 16, "color_bgr2bgra": 16, "durat": 16, "500": 16, "gif\ub85c": 16, "\ubcc0\ud658\ud560": 16, "m": 16, "\ub2e8\uc704\uc758": 16, "pt": 16, "point": 16, "label_studio_path": 16, "annotation\ud55c": 16, "studio": 16, "annotation\uc5d0": 16, "file\ub85c": 16, "studio\uc5d0\uc11c": 16, "\uc0ac\uc6a9\ud55c": 16, "label\uc744": 16, "\uc815\uc218\ub85c": 16, "dictionari": 16, "txt": 16, "mk": 16, "class_list": 16, "class_color": 16, "border": 16, "\ubcd1\ud569\ud560": 16, "mask\uc758": 16, "\ubb34\uc2dc": 16, "\uacbd\uacc4\uc120": 16, "without": 16, "center_x": 16, "randint": 16, "center_i": 16, "radiu": 16, "circl": 16, "astyp": 16, "cl": 16, "shape\ub85c": 16, "\ucd9c\ub825\uc758": 16, "padding\uc5d0": 16, "\ubcc0\ud615\ub420": 16, "\ubcc0\ud615\ub41c": 16, "\uc88c\ud45c\uac12": 16, "color_bgra2grai": 16, "res4": 16, "2000": 16, "vi": 16, "\uad6c\ud604": 16, "open": 16, "convert": 16, "rgba": 16, "\ubcd1\ud569\ub420": 16, "\uc601\uc5ed": 16, "\ubcd1\ud569\uc744": 16, "\uc704\ud574": 16, "channel\uc5d0": 16, "\uc801\uc6a9\ub420": 16, "blur\uc758": 16, "kernel": 16, "With": 16, "poly3": 16, "557": 16, "14285714": 16, "628": 16, "57142857": 16, "542": 16, "85714286": 16, "poly4": 16, "blur": 16, "res5": 16, "poly5": 16, "501": 16, "\uba74\uc801\uc744": 16, "\uc0b0\ucd9c\ud558\ub294": 16, "550": 16, "880000": 16, "mask\ub85c": 16, "\uaf2d\uc9d3\uc810": 16, "\ube44\uc728": 16, "55": 16, "\ubb38\uc790\uc5f4\uc774": 16, "\uc874\uc7ac\ud560": 16, "\ucd94\uac00\ud560": 16, "\ubb38\uc790\uc5f4": 16, "\ubb38\uc790": 16, "\uba3c\uc9c0\uc57c": 16, "revers": 16, "\uc774\uc0c1\uc758": 16, "pixel": 16, "height": 16, "\ub192\uc774": 16, "fp": 16, "\ub3d9\uc601\uc0c1\uc744": 16, "\ub3d9\uc601\uc0c1\uc774": 16, "gif\uc758": 16, "\ud488\uc9c8": 16, "frame": 16, "second": 16, "mp4": 16}, "objects": {"zerohertzLib": [[9, 0, 0, "-", "algorithm"], [10, 0, 0, "-", "api"], [11, 0, 0, "-", "logging"], [12, 0, 0, "-", "mlops"], [13, 0, 0, "-", "monitoring"], [14, 0, 0, "-", "plot"], [15, 0, 0, "-", "util"], [16, 0, 0, "-", "vision"]], "zerohertzLib.algorithm": [[9, 1, 1, "", "bfs"], [9, 1, 1, "", "bisect_left"], [9, 1, 1, "", "bisect_right"], [9, 1, 1, "", "dfs"], [9, 1, 1, "", "fft"], [9, 1, 1, "", "soe"]], "zerohertzLib.algorithm.bfs.params": [[9, 2, 1, "", "maps"], [9, 2, 1, "", "start"]], "zerohertzLib.algorithm.bisect_left.params": [[9, 2, 1, "", "sorted_list"], [9, 2, 1, "", "value"]], "zerohertzLib.algorithm.bisect_right.params": [[9, 2, 1, "", "sorted_list"], [9, 2, 1, "", "value"]], "zerohertzLib.algorithm.dfs.params": [[9, 2, 1, "", "maps"], [9, 2, 1, "", "start"]], "zerohertzLib.algorithm.fft.params": [[9, 2, 1, "", "inv"], [9, 2, 1, "", "sig"]], "zerohertzLib.algorithm.soe.params": [[9, 2, 1, "", "n_max"]], "zerohertzLib.api": [[10, 3, 1, "", "Discord"], [10, 3, 1, "", "GitHub"], [10, 3, 1, "", "OpenAI"], [10, 3, 1, "", "SlackBot"], [10, 3, 1, "", "SlackWebhook"]], "zerohertzLib.api.Discord": [[10, 4, 1, "", "image"], [10, 4, 1, "", "message"]], "zerohertzLib.api.Discord.image.params": [[10, 2, 1, "", "image_path"]], "zerohertzLib.api.Discord.message.params": [[10, 2, 1, "", "codeblock"], [10, 2, 1, "", "gap"], [10, 2, 1, "", "message"]], "zerohertzLib.api.Discord.params": [[10, 2, 1, "", "webhook_url"]], "zerohertzLib.api.GitHub": [[10, 4, 1, "", "__call__"], [10, 4, 1, "", "release_note"]], "zerohertzLib.api.GitHub.params": [[10, 2, 1, "", "issue"], [10, 2, 1, "", "repo"], [10, 2, 1, "", "token"], [10, 2, 1, "", "user"]], "zerohertzLib.api.GitHub.release_note.params": [[10, 2, 1, "", "name"], [10, 2, 1, "", "sphinx_source_path"]], "zerohertzLib.api.OpenAI": [[10, 4, 1, "", "__call__"], [10, 5, 1, "", "api_key"], [10, 5, 1, "", "audio"], [10, 5, 1, "", "beta"], [10, 5, 1, "", "chat"], [10, 5, 1, "", "completions"], [10, 5, 1, "", "edits"], [10, 5, 1, "", "embeddings"], [10, 5, 1, "", "files"], [10, 5, 1, "", "fine_tunes"], [10, 5, 1, "", "fine_tuning"], [10, 5, 1, "", "images"], [10, 5, 1, "", "model"], [10, 5, 1, "", "models"], [10, 5, 1, "", "moderations"], [10, 5, 1, "", "organization"], [10, 5, 1, "", "with_raw_response"]], "zerohertzLib.api.OpenAI.params": [[10, 2, 1, "", "api_key"]], "zerohertzLib.api.SlackBot": [[10, 4, 1, "", "file"], [10, 4, 1, "", "message"]], "zerohertzLib.api.SlackBot.file.params": [[10, 2, 1, "", "path"]], "zerohertzLib.api.SlackBot.message.params": [[10, 2, 1, "", "codeblock"], [10, 2, 1, "", "message"]], "zerohertzLib.api.SlackBot.params": [[10, 2, 1, "", "channel"], [10, 2, 1, "", "icon_emoji"], [10, 2, 1, "", "icon_url"], [10, 2, 1, "", "name"], [10, 2, 1, "", "token"]], "zerohertzLib.api.SlackWebhook": [[10, 4, 1, "", "message"]], "zerohertzLib.api.SlackWebhook.message.params": [[10, 2, 1, "", "codeblock"], [10, 2, 1, "", "message"]], "zerohertzLib.api.SlackWebhook.params": [[10, 2, 1, "", "webhook_url"]], "zerohertzLib.logging": [[11, 3, 1, "", "Logger"]], "zerohertzLib.logging.Logger": [[11, 4, 1, "", "critical"], [11, 4, 1, "", "debug"], [11, 4, 1, "", "error"], [11, 4, 1, "", "info"], [11, 4, 1, "", "warning"]], "zerohertzLib.logging.Logger.params": [[11, 2, 1, "", "channel"], [11, 2, 1, "", "console_level"], [11, 2, 1, "", "discord"], [11, 2, 1, "", "file_level"], [11, 2, 1, "", "file_name"], [11, 2, 1, "", "logger_level"], [11, 2, 1, "", "logger_name"], [11, 2, 1, "", "slack"]], "zerohertzLib.mlops": [[12, 3, 1, "", "TritonClientK8s"], [12, 3, 1, "", "TritonClientURL"]], "zerohertzLib.mlops.TritonClientK8s": [[12, 4, 1, "", "__call__"], [12, 5, 1, "", "inputs"], [12, 5, 1, "", "outputs"]], "zerohertzLib.mlops.TritonClientK8s.params": [[12, 2, 1, "", "model_name"], [12, 2, 1, "", "namespace"], [12, 2, 1, "", "port"], [12, 2, 1, "", "svc_name"]], "zerohertzLib.mlops.TritonClientURL": [[12, 4, 1, "", "__call__"], [12, 5, 1, "", "inputs"], [12, 5, 1, "", "outputs"]], "zerohertzLib.mlops.TritonClientURL.params": [[12, 2, 1, "", "model_name"], [12, 2, 1, "", "port"], [12, 2, 1, "", "url"]], "zerohertzLib.monitoring": [[13, 1, 1, "", "cpu"], [13, 1, 1, "", "gpu_memory"], [13, 1, 1, "", "gpu_usages"], [13, 1, 1, "", "storage"]], "zerohertzLib.monitoring.cpu.params": [[13, 2, 1, "", "dpi"], [13, 2, 1, "", "path"], [13, 2, 1, "", "threshold"], [13, 2, 1, "", "tick"]], "zerohertzLib.monitoring.gpu_memory.params": [[13, 2, 1, "", "dpi"], [13, 2, 1, "", "path"], [13, 2, 1, "", "threshold"], [13, 2, 1, "", "tick"]], "zerohertzLib.monitoring.gpu_usages.params": [[13, 2, 1, "", "dpi"], [13, 2, 1, "", "path"], [13, 2, 1, "", "threshold"], [13, 2, 1, "", "tick"]], "zerohertzLib.monitoring.storage.params": [[13, 2, 1, "", "path"], [13, 2, 1, "", "threshold"]], "zerohertzLib.plot": [[14, 1, 1, "", "barh"], [14, 1, 1, "", "barv"], [14, 1, 1, "", "color"], [14, 1, 1, "", "hist"], [14, 1, 1, "", "pie"], [14, 1, 1, "", "plot"], [14, 1, 1, "", "scatter"], [14, 1, 1, "", "table"]], "zerohertzLib.plot.barh.params": [[14, 2, 1, "", "data"], [14, 2, 1, "", "dpi"], [14, 2, 1, "", "per"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "rot"], [14, 2, 1, "", "title"], [14, 2, 1, "", "xlab"], [14, 2, 1, "", "ylab"]], "zerohertzLib.plot.barv.params": [[14, 2, 1, "", "data"], [14, 2, 1, "", "dpi"], [14, 2, 1, "", "per"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "rot"], [14, 2, 1, "", "title"], [14, 2, 1, "", "xlab"], [14, 2, 1, "", "ylab"]], "zerohertzLib.plot.color.params": [[14, 2, 1, "", "cnt"], [14, 2, 1, "", "rand"], [14, 2, 1, "", "uint8"]], "zerohertzLib.plot.hist.params": [[14, 2, 1, "", "cnt"], [14, 2, 1, "", "data"], [14, 2, 1, "", "dpi"], [14, 2, 1, "", "ovp"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "title"], [14, 2, 1, "", "xlab"], [14, 2, 1, "", "ylab"]], "zerohertzLib.plot.pie.params": [[14, 2, 1, "", "data"], [14, 2, 1, "", "dim"], [14, 2, 1, "", "dpi"], [14, 2, 1, "", "int_label"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "title"]], "zerohertzLib.plot.plot.params": [[14, 2, 1, "", "dpi"], [14, 2, 1, "", "ncol"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "title"], [14, 2, 1, "", "xdata"], [14, 2, 1, "", "xlab"], [14, 2, 1, "", "xlim"], [14, 2, 1, "", "ydata"], [14, 2, 1, "", "ylab"], [14, 2, 1, "", "ylim"]], "zerohertzLib.plot.scatter.params": [[14, 2, 1, "", "data"], [14, 2, 1, "", "dpi"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "size"], [14, 2, 1, "", "title"], [14, 2, 1, "", "xlab"], [14, 2, 1, "", "ylab"]], "zerohertzLib.plot.table.params": [[14, 2, 1, "", "col"], [14, 2, 1, "", "data"], [14, 2, 1, "", "dpi"], [14, 2, 1, "", "font_size"], [14, 2, 1, "", "ratio"], [14, 2, 1, "", "row"], [14, 2, 1, "", "title"]], "zerohertzLib.util": [[15, 3, 1, "", "Json"], [15, 3, 1, "", "JsonDir"], [15, 3, 1, "", "MakeData"], [15, 1, 1, "", "find_ext"], [15, 1, 1, "", "read_csv"], [15, 1, 1, "", "write_csv"], [15, 1, 1, "", "write_json"]], "zerohertzLib.util.Json": [[15, 4, 1, "", "__getitem__"], [15, 4, 1, "", "__len__"], [15, 4, 1, "", "_get_key"], [15, 4, 1, "", "_get_value"], [15, 4, 1, "", "get"], [15, 5, 1, "", "keys"], [15, 5, 1, "", "name"], [15, 4, 1, "", "tree"]], "zerohertzLib.util.Json.get.params": [[15, 2, 1, "", "key"]], "zerohertzLib.util.Json.params": [[15, 2, 1, "", "path"]], "zerohertzLib.util.JsonDir": [[15, 4, 1, "", "__getitem__"], [15, 4, 1, "", "__len__"], [15, 4, 1, "", "_get_key"], [15, 5, 1, "", "data"], [15, 5, 1, "", "name"], [15, 4, 1, "", "tree"], [15, 4, 1, "", "unique"]], "zerohertzLib.util.JsonDir.params": [[15, 2, 1, "", "path"]], "zerohertzLib.util.JsonDir.unique.params": [[15, 2, 1, "", "key"]], "zerohertzLib.util.MakeData": [[15, 4, 1, "", "condition"], [15, 5, 1, "", "end_data_path"], [15, 5, 1, "", "end_json_path"], [15, 5, 1, "", "json"], [15, 4, 1, "", "make"], [15, 4, 1, "", "make_data"]], "zerohertzLib.util.MakeData.condition.params": [[15, 2, 1, "", "json_instance"]], "zerohertzLib.util.MakeData.make_data.params": [[15, 2, 1, "", "data_name"], [15, 2, 1, "", "json_instance"]], "zerohertzLib.util.MakeData.params": [[15, 2, 1, "", "end_data_dir"], [15, 2, 1, "", "end_json_dir"], [15, 2, 1, "", "json_key"], [15, 2, 1, "", "start_data_path"], [15, 2, 1, "", "start_json_path"], [15, 2, 1, "", "target_path"]], "zerohertzLib.util.find_ext.params": [[15, 2, 1, "", "path"]], "zerohertzLib.util.read_csv.params": [[15, 2, 1, "", "header"], [15, 2, 1, "", "path"]], "zerohertzLib.util.write_csv.params": [[15, 2, 1, "", "data"], [15, 2, 1, "", "path"], [15, 2, 1, "", "tsv"]], "zerohertzLib.util.write_json.params": [[15, 2, 1, "", "data"], [15, 2, 1, "", "path"]], "zerohertzLib.vision": [[16, 3, 1, "", "ImageLoader"], [16, 3, 1, "", "JsonImageLoader"], [16, 1, 1, "", "bbox"], [16, 1, 1, "", "before_after"], [16, 1, 1, "", "cutout"], [16, 1, 1, "", "cwh2poly"], [16, 1, 1, "", "cwh2xyxy"], [16, 1, 1, "", "grid"], [16, 1, 1, "", "img2gif"], [16, 1, 1, "", "is_pts_in_poly"], [16, 1, 1, "", "labelstudio2labelme"], [16, 1, 1, "", "labelstudio2yolo"], [16, 1, 1, "", "masks"], [16, 1, 1, "", "pad"], [16, 1, 1, "", "paste"], [16, 1, 1, "", "poly2area"], [16, 1, 1, "", "poly2cwh"], [16, 1, 1, "", "poly2mask"], [16, 1, 1, "", "poly2ratio"], [16, 1, 1, "", "poly2xyxy"], [16, 1, 1, "", "text"], [16, 1, 1, "", "transparent"], [16, 1, 1, "", "vert"], [16, 1, 1, "", "vid2gif"], [16, 1, 1, "", "xyxy2cwh"], [16, 1, 1, "", "xyxy2poly"]], "zerohertzLib.vision.ImageLoader": [[16, 4, 1, "", "__getitem__"], [16, 4, 1, "", "__len__"], [16, 5, 1, "", "image_paths"]], "zerohertzLib.vision.ImageLoader.params": [[16, 2, 1, "", "cnt"], [16, 2, 1, "", "path"]], "zerohertzLib.vision.JsonImageLoader": [[16, 4, 1, "", "__getitem__"], [16, 4, 1, "", "__len__"], [16, 5, 1, "", "json"]], "zerohertzLib.vision.JsonImageLoader.params": [[16, 2, 1, "", "data_path"], [16, 2, 1, "", "json_key"], [16, 2, 1, "", "json_path"]], "zerohertzLib.vision.bbox.params": [[16, 2, 1, "", "box"], [16, 2, 1, "", "color"], [16, 2, 1, "", "img"], [16, 2, 1, "", "thickness"]], "zerohertzLib.vision.before_after.params": [[16, 2, 1, "", "after"], [16, 2, 1, "", "area"], [16, 2, 1, "", "before"], [16, 2, 1, "", "filename"], [16, 2, 1, "", "per"], [16, 2, 1, "", "quality"]], "zerohertzLib.vision.cutout.params": [[16, 2, 1, "", "alpha"], [16, 2, 1, "", "background"], [16, 2, 1, "", "crop"], [16, 2, 1, "", "img"], [16, 2, 1, "", "poly"]], "zerohertzLib.vision.cwh2poly.params": [[16, 2, 1, "", "box"]], "zerohertzLib.vision.cwh2xyxy.params": [[16, 2, 1, "", "box"]], "zerohertzLib.vision.grid.params": [[16, 2, 1, "", "color"], [16, 2, 1, "", "filename"], [16, 2, 1, "", "imgs"], [16, 2, 1, "", "size"]], "zerohertzLib.vision.img2gif.params": [[16, 2, 1, "", "duration"], [16, 2, 1, "", "filename"], [16, 2, 1, "", "path"]], "zerohertzLib.vision.is_pts_in_poly.params": [[16, 2, 1, "", "poly"], [16, 2, 1, "", "pts"]], "zerohertzLib.vision.labelstudio2labelme.params": [[16, 2, 1, "", "label_studio_path"], [16, 2, 1, "", "target_path"]], "zerohertzLib.vision.labelstudio2yolo.params": [[16, 2, 1, "", "label"], [16, 2, 1, "", "label_studio_path"], [16, 2, 1, "", "target_path"]], "zerohertzLib.vision.masks.params": [[16, 2, 1, "", "alpha"], [16, 2, 1, "", "border"], [16, 2, 1, "", "class_color"], [16, 2, 1, "", "class_list"], [16, 2, 1, "", "color"], [16, 2, 1, "", "img"], [16, 2, 1, "", "mks"], [16, 2, 1, "", "poly"]], "zerohertzLib.vision.pad.params": [[16, 2, 1, "", "color"], [16, 2, 1, "", "img"], [16, 2, 1, "", "poly"], [16, 2, 1, "", "shape"]], "zerohertzLib.vision.paste.params": [[16, 2, 1, "", "alpha"], [16, 2, 1, "", "box"], [16, 2, 1, "", "gaussian"], [16, 2, 1, "", "img"], [16, 2, 1, "", "poly"], [16, 2, 1, "", "resize"], [16, 2, 1, "", "target"], [16, 2, 1, "", "vis"]], "zerohertzLib.vision.poly2area.params": [[16, 2, 1, "", "poly"]], "zerohertzLib.vision.poly2cwh.params": [[16, 2, 1, "", "box"]], "zerohertzLib.vision.poly2mask.params": [[16, 2, 1, "", "poly"], [16, 2, 1, "", "shape"]], "zerohertzLib.vision.poly2ratio.params": [[16, 2, 1, "", "poly"]], "zerohertzLib.vision.poly2xyxy.params": [[16, 2, 1, "", "box"]], "zerohertzLib.vision.text.params": [[16, 2, 1, "", "box"], [16, 2, 1, "", "color"], [16, 2, 1, "", "font_size"], [16, 2, 1, "", "img"], [16, 2, 1, "", "txt"], [16, 2, 1, "", "vis"]], "zerohertzLib.vision.transparent.params": [[16, 2, 1, "", "img"], [16, 2, 1, "", "reverse"], [16, 2, 1, "", "threshold"]], "zerohertzLib.vision.vert.params": [[16, 2, 1, "", "filename"], [16, 2, 1, "", "height"], [16, 2, 1, "", "imgs"]], "zerohertzLib.vision.vid2gif.params": [[16, 2, 1, "", "filename"], [16, 2, 1, "", "fps"], [16, 2, 1, "", "path"], [16, 2, 1, "", "quality"]], "zerohertzLib.vision.xyxy2cwh.params": [[16, 2, 1, "", "box"]], "zerohertzLib.vision.xyxy2poly.params": [[16, 2, 1, "", "box"]]}, "objtypes": {"0": "py:module", "1": "py:function", "2": "py:parameter", "3": "py:class", "4": "py:method", "5": "py:attribute"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "function", "Python function"], "2": ["py", "parameter", "Python parameter"], "3": ["py", "class", "Python class"], "4": ["py", "method", "Python method"], "5": ["py", "attribute", "Python attribute"]}, "titleterms": {"ci": 0, "cd": 0, "pipelin": 0, "us": 0, "stack": 0, "jenkin": 0, "dev": 0, "branch": 0, "rule": 0, "chore": 0, "github": 0, "action": 0, "manag": 0, "label": 0, "issu": 0, "pull": 0, "request": 0, "sphinx": 0, "document": 0, "deploy": 0, "releas": [2, 3, 4, 5, 6, 7], "note": 2, "v0": [3, 4, 5, 6, 7], "1": [3, 4, 5, 6], "10": 3, "date": [3, 4, 5, 6, 7], "9": 3, "8": 3, "7": [3, 6], "6": [3, 4, 6], "5": [3, 4, 6, 7], "4": [3, 4, 5, 6], "3": [3, 4, 5, 6], "2": [3, 4, 5, 6], "0": [4, 5, 6, 7], "zerohertzlib": [8, 9, 10, 11, 12, 13, 14, 15, 16], "algorithm": 9, "api": 10, "log": 11, "mlop": 12, "monitor": 13, "plot": 14, "util": 15, "vision": 16}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx": 58}, "alltitles": {"CI/CD Pipelines": [[0, "ci-cd-pipelines"]], "Used Stacks": [[0, null]], "Jenkins": [[0, "jenkins"]], "Dev Branch": [[0, "dev-branch"]], "Branch Rule": [[0, null], [0, null]], "Chore Branch": [[0, "chore-branch"]], "GitHub Actions": [[0, "github-actions"]], "Managing Labels for Issues and Pull Requests in GitHub": [[0, "managing-labels-for-issues-and-pull-requests-in-github"]], "Sphinx Documentation Deployment": [[0, "sphinx-documentation-deployment"]], "Sphinx Documentation": [[0, null]], "Release Notes": [[2, "release-notes"]], "v0.1": [[3, "v0-1"]], "v0.1.10": [[3, "v0-1-10"]], "Release Date": [[3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [3, null], [4, null], [4, null], [4, null], [4, null], [4, null], [4, null], [4, null], [4, null], [4, null], [4, null], [4, null], [5, null], [5, null], [5, null], [5, null], [5, null], [6, null], [6, null], [6, null], [6, null], [6, null], [6, null], [6, null], [6, null], [6, null], [7, null], [7, null]], "v0.1.9": [[3, "v0-1-9"]], "v0.1.8": [[3, "v0-1-8"]], "v0.1.7": [[3, "v0-1-7"]], "v0.1.6": [[3, "v0-1-6"]], "v0.1.5": [[3, "v0-1-5"]], "v0.1.4": [[3, "v0-1-4"]], "v0.1.3": [[3, "v0-1-3"]], "v0.1.2": [[3, "v0-1-2"]], "v0.1.1": [[3, "v0-1-1"]], "v0.2": [[4, "v0-2"]], "v0.2.6": [[4, "v0-2-6"]], "v0.2.5": [[4, "v0-2-5"]], "v0.2.4": [[4, "v0-2-4"]], "v0.2.3": [[4, "v0-2-3"]], "v0.2.2": [[4, "v0-2-2"]], "v0.2.1": [[4, "v0-2-1"]], "v0.2.0": [[4, "v0-2-0"]], "v0.3": [[5, "v0-3"]], "v0.3.4": [[5, "v0-3-4"]], "v0.3.3": [[5, "v0-3-3"]], "v0.3.2": [[5, "v0-3-2"]], "v0.3.1": [[5, "v0-3-1"]], "v0.3.0": [[5, "v0-3-0"]], "v0.4": [[6, "v0-4"]], "v0.4.7": [[6, "v0-4-7"]], "v0.4.6": [[6, "v0-4-6"]], "v0.4.5": [[6, "v0-4-5"]], "v0.4.4": [[6, "v0-4-4"]], "v0.4.3": [[6, "v0-4-3"]], "v0.4.2": [[6, "v0-4-2"]], "v0.4.1": [[6, "v0-4-1"]], "v0.4.0": [[6, "v0-4-0"]], "v0.5": [[7, "v0-5"]], "v0.5.0": [[7, "v0-5-0"]], "zerohertzLib": [[8, "zerohertzlib"]], "zerohertzLib.algorithm": [[9, "module-zerohertzLib.algorithm"]], "Algorithm": [[9, null]], "zerohertzLib.api": [[10, "module-zerohertzLib.api"]], "API": [[10, null]], "zerohertzLib.logging": [[11, "module-zerohertzLib.logging"]], "Logging": [[11, null]], "zerohertzLib.mlops": [[12, "module-zerohertzLib.mlops"]], "MLOps": [[12, null]], "zerohertzLib.monitoring": [[13, "module-zerohertzLib.monitoring"]], "Monitoring": [[13, null]], "zerohertzLib.plot": [[14, "module-zerohertzLib.plot"]], "Plot": [[14, null]], "zerohertzLib.util": [[15, "module-zerohertzLib.util"]], "Util": [[15, null]], "zerohertzLib.vision": [[16, "module-zerohertzLib.vision"]], "Vision": [[16, null]]}, "indexentries": {"bfs() (in module zerohertzlib.algorithm)": [[9, "zerohertzLib.algorithm.bfs"]], "bisect_left() (in module zerohertzlib.algorithm)": [[9, "zerohertzLib.algorithm.bisect_left"]], "bisect_right() (in module zerohertzlib.algorithm)": [[9, "zerohertzLib.algorithm.bisect_right"]], "dfs() (in module zerohertzlib.algorithm)": [[9, "zerohertzLib.algorithm.dfs"]], "fft() (in module zerohertzlib.algorithm)": [[9, "zerohertzLib.algorithm.fft"]], "module": [[9, "module-zerohertzLib.algorithm"], [10, "module-zerohertzLib.api"], [11, "module-zerohertzLib.logging"], [12, "module-zerohertzLib.mlops"], [13, "module-zerohertzLib.monitoring"], [14, "module-zerohertzLib.plot"], [15, "module-zerohertzLib.util"], [16, "module-zerohertzLib.vision"]], "soe() (in module zerohertzlib.algorithm)": [[9, "zerohertzLib.algorithm.soe"]], "zerohertzlib.algorithm": [[9, "module-zerohertzLib.algorithm"]], "discord (class in zerohertzlib.api)": [[10, "zerohertzLib.api.Discord"]], "github (class in zerohertzlib.api)": [[10, "zerohertzLib.api.GitHub"]], "openai (class in zerohertzlib.api)": [[10, "zerohertzLib.api.OpenAI"]], "slackbot (class in zerohertzlib.api)": [[10, "zerohertzLib.api.SlackBot"]], "slackwebhook (class in zerohertzlib.api)": [[10, "zerohertzLib.api.SlackWebhook"]], "__call__() (zerohertzlib.api.github method)": [[10, "zerohertzLib.api.GitHub.__call__"]], "__call__() (zerohertzlib.api.openai method)": [[10, "zerohertzLib.api.OpenAI.__call__"]], "api_key (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.api_key"]], "audio (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.audio"]], "beta (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.beta"]], "chat (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.chat"]], "completions (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.completions"]], "edits (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.edits"]], "embeddings (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.embeddings"]], "file() (zerohertzlib.api.slackbot method)": [[10, "zerohertzLib.api.SlackBot.file"]], "files (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.files"]], "fine_tunes (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.fine_tunes"]], "fine_tuning (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.fine_tuning"]], "image() (zerohertzlib.api.discord method)": [[10, "zerohertzLib.api.Discord.image"]], "images (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.images"]], "message() (zerohertzlib.api.discord method)": [[10, "zerohertzLib.api.Discord.message"]], "message() (zerohertzlib.api.slackbot method)": [[10, "zerohertzLib.api.SlackBot.message"]], "message() (zerohertzlib.api.slackwebhook method)": [[10, "zerohertzLib.api.SlackWebhook.message"]], "model (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.model"]], "models (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.models"]], "moderations (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.moderations"]], "organization (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.organization"]], "release_note() (zerohertzlib.api.github method)": [[10, "zerohertzLib.api.GitHub.release_note"]], "with_raw_response (zerohertzlib.api.openai attribute)": [[10, "zerohertzLib.api.OpenAI.with_raw_response"]], "zerohertzlib.api": [[10, "module-zerohertzLib.api"]], "logger (class in zerohertzlib.logging)": [[11, "zerohertzLib.logging.Logger"]], "critical() (zerohertzlib.logging.logger method)": [[11, "zerohertzLib.logging.Logger.critical"]], "debug() (zerohertzlib.logging.logger method)": [[11, "zerohertzLib.logging.Logger.debug"]], "error() (zerohertzlib.logging.logger method)": [[11, "zerohertzLib.logging.Logger.error"]], "info() (zerohertzlib.logging.logger method)": [[11, "zerohertzLib.logging.Logger.info"]], "warning() (zerohertzlib.logging.logger method)": [[11, "zerohertzLib.logging.Logger.warning"]], "zerohertzlib.logging": [[11, "module-zerohertzLib.logging"]], "tritonclientk8s (class in zerohertzlib.mlops)": [[12, "zerohertzLib.mlops.TritonClientK8s"]], "tritonclienturl (class in zerohertzlib.mlops)": [[12, "zerohertzLib.mlops.TritonClientURL"]], "__call__() (zerohertzlib.mlops.tritonclientk8s method)": [[12, "zerohertzLib.mlops.TritonClientK8s.__call__"]], "__call__() (zerohertzlib.mlops.tritonclienturl method)": [[12, "zerohertzLib.mlops.TritonClientURL.__call__"]], "inputs (zerohertzlib.mlops.tritonclientk8s attribute)": [[12, "zerohertzLib.mlops.TritonClientK8s.inputs"]], "inputs (zerohertzlib.mlops.tritonclienturl attribute)": [[12, "zerohertzLib.mlops.TritonClientURL.inputs"]], "outputs (zerohertzlib.mlops.tritonclientk8s attribute)": [[12, "zerohertzLib.mlops.TritonClientK8s.outputs"]], "outputs (zerohertzlib.mlops.tritonclienturl attribute)": [[12, "zerohertzLib.mlops.TritonClientURL.outputs"]], "zerohertzlib.mlops": [[12, "module-zerohertzLib.mlops"]], "cpu() (in module zerohertzlib.monitoring)": [[13, "zerohertzLib.monitoring.cpu"]], "gpu_memory() (in module zerohertzlib.monitoring)": [[13, "zerohertzLib.monitoring.gpu_memory"]], "gpu_usages() (in module zerohertzlib.monitoring)": [[13, "zerohertzLib.monitoring.gpu_usages"]], "storage() (in module zerohertzlib.monitoring)": [[13, "zerohertzLib.monitoring.storage"]], "zerohertzlib.monitoring": [[13, "module-zerohertzLib.monitoring"]], "barh() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.barh"]], "barv() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.barv"]], "color() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.color"]], "hist() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.hist"]], "pie() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.pie"]], "plot() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.plot"]], "scatter() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.scatter"]], "table() (in module zerohertzlib.plot)": [[14, "zerohertzLib.plot.table"]], "zerohertzlib.plot": [[14, "module-zerohertzLib.plot"]], "json (class in zerohertzlib.util)": [[15, "zerohertzLib.util.Json"]], "jsondir (class in zerohertzlib.util)": [[15, "zerohertzLib.util.JsonDir"]], "makedata (class in zerohertzlib.util)": [[15, "zerohertzLib.util.MakeData"]], "__getitem__() (zerohertzlib.util.json method)": [[15, "zerohertzLib.util.Json.__getitem__"]], "__getitem__() (zerohertzlib.util.jsondir method)": [[15, "zerohertzLib.util.JsonDir.__getitem__"]], "__len__() (zerohertzlib.util.json method)": [[15, "zerohertzLib.util.Json.__len__"]], "__len__() (zerohertzlib.util.jsondir method)": [[15, "zerohertzLib.util.JsonDir.__len__"]], "_get_key() (zerohertzlib.util.json method)": [[15, "zerohertzLib.util.Json._get_key"]], "_get_key() (zerohertzlib.util.jsondir method)": [[15, "zerohertzLib.util.JsonDir._get_key"]], "_get_value() (zerohertzlib.util.json method)": [[15, "zerohertzLib.util.Json._get_value"]], "condition() (zerohertzlib.util.makedata method)": [[15, "zerohertzLib.util.MakeData.condition"]], "data (zerohertzlib.util.jsondir attribute)": [[15, "zerohertzLib.util.JsonDir.data"]], "end_data_path (zerohertzlib.util.makedata attribute)": [[15, "zerohertzLib.util.MakeData.end_data_path"]], "end_json_path (zerohertzlib.util.makedata attribute)": [[15, "zerohertzLib.util.MakeData.end_json_path"]], "find_ext() (in module zerohertzlib.util)": [[15, "zerohertzLib.util.find_ext"]], "get() (zerohertzlib.util.json method)": [[15, "zerohertzLib.util.Json.get"]], "json (zerohertzlib.util.makedata attribute)": [[15, "zerohertzLib.util.MakeData.json"]], "keys (zerohertzlib.util.json attribute)": [[15, "zerohertzLib.util.Json.keys"]], "make() (zerohertzlib.util.makedata method)": [[15, "zerohertzLib.util.MakeData.make"]], "make_data() (zerohertzlib.util.makedata method)": [[15, "zerohertzLib.util.MakeData.make_data"]], "name (zerohertzlib.util.json attribute)": [[15, "zerohertzLib.util.Json.name"]], "name (zerohertzlib.util.jsondir attribute)": [[15, "zerohertzLib.util.JsonDir.name"]], "read_csv() (in module zerohertzlib.util)": [[15, "zerohertzLib.util.read_csv"]], "tree() (zerohertzlib.util.json method)": [[15, "zerohertzLib.util.Json.tree"]], "tree() (zerohertzlib.util.jsondir method)": [[15, "zerohertzLib.util.JsonDir.tree"]], "unique() (zerohertzlib.util.jsondir method)": [[15, "zerohertzLib.util.JsonDir.unique"]], "write_csv() (in module zerohertzlib.util)": [[15, "zerohertzLib.util.write_csv"]], "write_json() (in module zerohertzlib.util)": [[15, "zerohertzLib.util.write_json"]], "zerohertzlib.util": [[15, "module-zerohertzLib.util"]], "imageloader (class in zerohertzlib.vision)": [[16, "zerohertzLib.vision.ImageLoader"]], "jsonimageloader (class in zerohertzlib.vision)": [[16, "zerohertzLib.vision.JsonImageLoader"]], "__getitem__() (zerohertzlib.vision.imageloader method)": [[16, "zerohertzLib.vision.ImageLoader.__getitem__"]], "__getitem__() (zerohertzlib.vision.jsonimageloader method)": [[16, "zerohertzLib.vision.JsonImageLoader.__getitem__"]], "__len__() (zerohertzlib.vision.imageloader method)": [[16, "zerohertzLib.vision.ImageLoader.__len__"]], "__len__() (zerohertzlib.vision.jsonimageloader method)": [[16, "zerohertzLib.vision.JsonImageLoader.__len__"]], "bbox() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.bbox"]], "before_after() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.before_after"]], "cutout() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.cutout"]], "cwh2poly() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.cwh2poly"]], "cwh2xyxy() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.cwh2xyxy"]], "grid() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.grid"]], "image_paths (zerohertzlib.vision.imageloader attribute)": [[16, "zerohertzLib.vision.ImageLoader.image_paths"]], "img2gif() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.img2gif"]], "is_pts_in_poly() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.is_pts_in_poly"]], "json (zerohertzlib.vision.jsonimageloader attribute)": [[16, "zerohertzLib.vision.JsonImageLoader.json"]], "labelstudio2labelme() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.labelstudio2labelme"]], "labelstudio2yolo() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.labelstudio2yolo"]], "masks() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.masks"]], "pad() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.pad"]], "paste() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.paste"]], "poly2area() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.poly2area"]], "poly2cwh() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.poly2cwh"]], "poly2mask() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.poly2mask"]], "poly2ratio() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.poly2ratio"]], "poly2xyxy() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.poly2xyxy"]], "text() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.text"]], "transparent() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.transparent"]], "vert() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.vert"]], "vid2gif() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.vid2gif"]], "xyxy2cwh() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.xyxy2cwh"]], "xyxy2poly() (in module zerohertzlib.vision)": [[16, "zerohertzLib.vision.xyxy2poly"]], "zerohertzlib.vision": [[16, "module-zerohertzLib.vision"]]}}) \ No newline at end of file diff --git a/sphinx/source/release/v0.5.md b/sphinx/source/release/v0.5.md index fbb14eb9..d403246c 100644 --- a/sphinx/source/release/v0.5.md +++ b/sphinx/source/release/v0.5.md @@ -2,6 +2,25 @@ ## v0.5.0 +

[v0.5.0] Chore Update (#129)

+ +```{admonition} Release Date +:class: tip + +2023/11/29 +``` + +

+chore +release/chore +

+ + +

Chore

+ ++ `api` submodule의 PyTest를 위한 Jenkins의 credentials 추가 ++ `GitHub` stage의 package 전체 설치 code 추가 +

[v0.5.0] Release (#127)

```{admonition} Release Date