Debug / callTrain
TypeScript
Call the function "train" on the instantiated model within a debug session.
Request parameters
{
/** The debug session's id. */
debugSessionId: string,
/** Identifier of the instantiated model to use, as returned by the 'callInstantiateModel' function. */
instantiatedModelId: string,
/** Parameters to provide to the function. */
params: DecthingsParameterProvider[]
}
Where "DecthingsParameterProvider" is defined as:
export type DecthingsParameterProvider = {
name: string,
data: {
type: 'dataset',
datasetId: string,
datasetKey: string
} | {
type: 'data',
data: DecthingsTensor[]
}
}
Response
{
/** If successful. One of "result" and "error" will be present. */
result?: {
/** A unique identifier which you should use in subsequent API calls. */
trainingSessionId: string
},
/** If failed */
error?: {
code: 'debug_session_not_found' | 'instantiated_model_not_found' | 'debug_session_terminated' | 'bad_credentials' | 'too_many_requests' | 'payment_required' | 'unknown'
} | {
code: 'dataset_not_found',
datasetId: string
} | {
code: 'dataset_key_not_found',
datasetId: string,
datasetKey: string
} | {
code: 'exception',
exceptionDetails?: string
} | {
code: 'invalid_parameter',
parameterName: string,
reason: string
}
}
Example
Following the installation guide to setup the Decthings API for TypeScript. Add your parameters to the following code and run it in Node.js, or in a browser by using a bundler.
The code reads your API key from file. Create an API key and save it to the file "auth.txt". Keep your key safe!
import * as fs from 'fs'
import { DecthingsClient } from '@decthings/api-client'
let apiKey = fs.readFileSync('./auth.txt').toString().trim()
let client = new DecthingsClient({ apiKey })
async function main() {
try {
let response = await client.debug.callTrain({
debugSessionId: /* Add debugSessionId here */,
instantiatedModelId: /* Add instantiatedModelId here */,
params: /* Add params here */
})
if (result.error) {
// Decthings sent us an error
console.log(response.error)
} else {
// Success!
console.log(response.result)
}
}
catch (e) {
// Client throws an error on connection issues. The function may or may not have succeded
console.log(e)
}
}
main()