Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Example configuration in a processor:

{
  "trainingBatch": 2,
  "batchSizetrainingBatchSize": 1000,
  "model": "C:\\dev\\model",
  "active": true,
  "type": "bert-train-processor",
  "sourceField": "text",
  "servers": [
    {
      "port": 8888,
      "host": "localhost"
    }
  ],
  "trainConnectTimeout": "PT30s",
  "trainReadTimeout": "PT5m",
  "timeInterval":"PT10s",
  "name": "BERT trainer",
  "id": "50dcc5e2-1fcd-40bc-82b7-a257b0ec38ed"
}

...

Batch to be used while training the model.

batchSize trainingBatchSize - Required, Int

Maximum amount of data to send to HuggingFace Service.

...