sigopt.comLog In / Sign Up
Search…
⌃K
Links
Welcome to SigOpt!
Advanced Experimentation
Core Module API References
Installation and Setup
Quick Start
API Topics
API Endpoints
API Objects
Assignments Object
Best Assignments Object
Bounds Object
Categorical Value Object
Client Object
Conditional Object
Conditions Object
Constraint Term Object
Experiment Object
Metadata Object
Metric Object
Metric Evaluation Object
Metric Importances Object
Observation Object
Organization Object
Pagination Object
Parameter Object
Parameter Constraint Object
Plan Object
Plan Period Object
Plan Rules Object
Prior Object
Progress Object
Queued Suggestion Object
Stopping Criteria Object
Suggestion Object
Token Object
AI MODULE API REFERENCES
Installation and Setup
Quick Start Tutorials
Tracking Your Training Runs
AI Experiments
Bring Your Own Optimizer
XGBoost Integration
HyperOpt
SigOpt Orchestrate
API Reference
Support
Powered By GitBook

Categorical Value Object

​
A single value that a categorical Parameter can take. This can be an object as described below, or simply a string.

Fields

Key
Type
Value
enum_index
int
Categorical parameters function like enum types in many programming languages. This field is 1-indexed.
name
string
The name of this categorical value

Examples

{
"enum_index": 1,
"name": "true",
"object":"categorical_value"
}
{
"enum_index": 2,
"name": "false",
"object": "categorical_value"
}
Previous
Bounds Object
Next
Client Object
Last modified 5mo ago
Copy link
On this page
Fields
Examples