PandapowrTR / Burobot

Burobot is a toolbox for tasks such as data collection, training, and data cleaning in the field of artificial intelligence.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README File is currently under development There are a few sample codes for now. Examples:

NEW MODEL

from Burobot import Training

modelName = "Name"
data = "data/to/path" or ["train/path", "test/path", "val/path"]
saveToPath = "save/to/path"
scheme = Training.ModelSchemes.ImageClassification.Scheme1(4, (200, 200, 3))
params = scheme.params
Training.GridSearchTrain.newModel(
    modelName,
    data,
    saveToPath,
    scheme.trainModel,
    {"params": params, "staticValues": scheme.staticValues},
    scheme.saveModel,
    {},
    scheme.loadModel,
    {},
    scheme.hardwareSetup,
    {},
    scheme.loadData,
    {},
    scheme.splitData,
    {},
    scheme.testModel,
    {},
)

OLD MODEL

from Burobot import Training

paramsFilePath = "params/file/path.json"
Training.GridSearchTrain.oldModel(paramsFilePath)

About

Burobot is a toolbox for tasks such as data collection, training, and data cleaning in the field of artificial intelligence.

License:Apache License 2.0


Languages

Language:Python 100.0%