bigframes._config.ExperimentOptions#

class bigframes._config.ExperimentOptions[source]#

Encapsulates the configration for experiments

property ai_operators: bool#

If True, allow using the AI operators.

Examples:

>>> import bigframes.pandas as bpd
>>> bpd.options.experiments.ai_operators = True
property blob_display: bool#

Whether to display the blob content in notebook DataFrame preview. Default True.

property blob_display_height: int | None#

Height in pixels that the blob constrained to.

property blob_display_width: int | None#

Width in pixels that the blob constrained to.

property semantic_operators: bool#

Deprecated.

Examples:

>>> import bigframes.pandas as bpd
>>> bpd.options.experiments.semantic_operators = True
property sql_compiler: Literal['legacy', 'stable', 'experimental']#

Set to ‘experimental’ to try out the latest in compilation experiments..

Examples:

>>> import bigframes.pandas as bpd
>>> bpd.options.experiments.sql_compiler = 'experimental'