mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-04-30 19:36:24 +02:00
refine schema desc
This commit is contained in:
parent
9c426f73dc
commit
49779d8615
1 changed files with 6 additions and 2 deletions
|
|
@ -328,7 +328,7 @@ GroupStat:
|
|||
|
||||
SplitBins:
|
||||
type: class
|
||||
description: "Bin continuous data into intervals and return the bin identifier encoded as an integer value"
|
||||
description: "Inplace binning of continuous data into intervals, returning integer-encoded bin identifiers directly."
|
||||
methods:
|
||||
__init__:
|
||||
description: "Initialize self."
|
||||
|
|
@ -336,11 +336,15 @@ SplitBins:
|
|||
properties:
|
||||
cols:
|
||||
type: list
|
||||
description: "Columns to be binned."
|
||||
description: "Columns to be binned inplace."
|
||||
strategy:
|
||||
type: str
|
||||
description: "Strategy used to define the widths of the bins."
|
||||
default: quantile
|
||||
enum:
|
||||
- quantile
|
||||
- uniform
|
||||
- kmeans
|
||||
required:
|
||||
- cols
|
||||
fit:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue