SingTown AI Python Client
Project description
SingTown AI Python SDK
This SDK is designed to interact with SingTown AI Cloud Service or SingTown AI Standalone(self-hosted).
Installation
pip install singtown_ai
Usage
Login Configuration
- SingTown AI Cloud Service: The
hostis"https://ai.singtown.com". - SingTown AI Standalone (self-hosted): The
hostis something like"http://127.0.0.1:8000".
You can obtain the token and task_id from Project -> Information.
Environment Variables:
export SINGTOWN_AI_HOST="https://ai.singtown.com" # Or the cloud service URL
export SINGTOWN_AI_TOKEN="your token" # Your token
export SINGTOWN_AI_TASK_ID="your id" # Your task ID
Alternatively, set them directly in code:
from singtown_ai import SingTownAiClient
client = SingTownAiClient(
host="https://ai.singtown.com", # Or the cloud service URL
token="your token", # Your token
task_id="your id" # Your task ID
)
Basic Usage
import time
from singtown_ai import SingTownAiClient
client = SingTownAiClient()
print(client.task)
client.export_class_folder(export_path) # or client.export_yolo(export_path)
metrics = []
for i in range(10):
print("Train:", i)
metrics.append({"epoch": i, "accuracy": i * 10})
client.update_metrics(metrics)
time.sleep(1)
client.upload_results_zip(uploadfile)
Update Metrics
metrics = [
{"epoch": 0, "accuracy": 0.8, "loss": 0.2},
{"epoch": 1, "accuracy": 0.9, "loss": 0.1},
]
client = SingTownAiClient()
client.update_metrics(metrics)
- The field names in
metricsare not restricted, and they will appear on the Metrics page in SingTown AI.
Watching metrics.csv
from singtown_ai import file_watcher
client = SingTownAiClient()
@file_watcher("path/to/metrics.csv", interval=3)
def file_on_change(content: str):
import csv
from io import StringIO
metrics = list(csv.DictReader(StringIO(content)))
if not metrics:
return
client.update_metrics(metrics)
- Every 1 seconds, the SDK will parse the
metrics.csvand upload metrics.
Logging
client = SingTownAiClient()
client.log("line")
Logging sys.stdout and stderror
from singtown_ai import stdout_watcher
client = SingTownAiClient()
@stdout_watcher(interval=1)
def on_stdout_write(content: str):
client.log(content, end="")
- Every 1 seconds, the SDK will upload messages to logging.
Uploading Result Files
client = SingTownAiClient()
client.upload_results_zip("your.zip")
- This method uploads a
.zipresult file.
Mock
- mock_task.json
{
"project": {
"labels": ["cat", "dog"],
"type": "CLASSIFICATION"
},
"device": "openmv-cam-h7-plus",
"model_name": "mobilenet_v2_0.35_128",
"freeze_backbone": true,
"batch_size": 16,
"epochs": 1,
"learning_rate": 0.001,
"early_stopping": 3,
"export_width": 128,
"export_height": 128
}
- mock_dataset.json
[
{
"url": "https://github.com/singtown-ai/singtown-ai-datasets/raw/main/images/cat.0.jpg",
"subset": "TRAIN",
"classification": "cat"
},
{
"url": "https://github.com/singtown-ai/singtown-ai-datasets/raw/main/images/cat.1.jpg",
"subset": "VALID",
"classification": "cat"
},
{
"url": "https://github.com/singtown-ai/singtown-ai-datasets/raw/main/images/cat.2.jpg",
"subset": "TEST",
"classification": "cat"
},
{
"url": "https://github.com/singtown-ai/singtown-ai-datasets/raw/main/images/dog.0.jpg",
"subset": "TRAIN",
"classification": "dog"
},
{
"url": "https://github.com/singtown-ai/singtown-ai-datasets/raw/main/images/dog.1.jpg",
"subset": "VALID",
"classification": "dog"
},
{
"url": "https://github.com/singtown-ai/singtown-ai-datasets/raw/main/images/dog.2.jpg",
"subset": "TEST",
"classification": "dog"
}
]
Environment Variables:
export SINGTOWN_AI_MOCK_TASK_PATH="mock_task.json"
export SINGTOWN_AI_MOCK_DATASET_PATH="mock_dataset.json"
Alternatively, set them directly in code:
client = SingTownAiClient(
mock_task_path="mock_task.json",
mock_dataset_path="mock_dataset.json",
)
- Set mock_data, Will mock demo task and dataset, this is useful for debugging.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
singtown_ai-1.9.0.tar.gz
(6.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file singtown_ai-1.9.0.tar.gz.
File metadata
- Download URL: singtown_ai-1.9.0.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb256d5b28e8659e0042fd0395a151c0077d123b9e6e2f927a0cf15c4d161edb
|
|
| MD5 |
41c17480cf178de01b5fa3912e308149
|
|
| BLAKE2b-256 |
99bbbd502a14eae85b3e603fd010125a8e8ae0ff82305a87cc9c2fdfca740237
|
File details
Details for the file singtown_ai-1.9.0-py3-none-any.whl.
File metadata
- Download URL: singtown_ai-1.9.0-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b08689bbdf1c4d60caee6abfcce3c9456860fa2a27334d2d23bdbb1de5e69337
|
|
| MD5 |
8eab5da3727fbd22c84f68e380950c12
|
|
| BLAKE2b-256 |
7f77a423df2a6a5a6fd7d8aabcf917a5fea69f6ed6b3eafb5b41df42edeae0a5
|