(df=traces, col_name=col_name, fields=parsed_fields) File "/Users/foo.bar/Desktop/repositories/mlflow/mlflow/tracing/utils.py", line 312, in _extract_from_traces_pandas_df raise MlflowException( mlflow.exception
dataframe.DataFrame) ): # using dry_run=True attempts to prevent the DataFrame from being materialized just to read the column types from it Collaborator Author erindru May 14, 2025 • edited In a real scenario with a Python model, I believe columns_to_types is a required field ...
Column widths have been arguably problematic and these issues stem from the fact that we usetable-layout: fixedwhencolumn_widthsare set. I don't think we should take this approach, because tables with lots of data andcolumn_widthsset will end up looking like this: Setting the dataframe to a...
Describe your changes Adds a new st.column_config.JsonColumn column type optimized for handling JSON-compatible text and objects. This PR also improves the existing TextColumn and ObjectColumn by a...
def get_column(self, name: str) -> CompliantSeriesT_co: ... On the public side, it would mean adding: # narwhals.typing.py SeriesT_co = TypeVar("SeriesT_co", bound="Series[Any]", covariant=True) And making changes like this: # narwhals.dataframe.py from narwhals.typing import...
Motivation: before this change column names were passed to DF ctor as arguments of LiteralString types (each name of it's own type), which seems to add to linear dependency of LLVM IR size and hence impact DF ctor compile time. Since this information is
A "transcripts" column is also available but not used yet. The dataset is affected by some image URLs having a 404 issue. Collaborator nikg4 Mar 19, 2025 • edited move 404 warning to class docstring as in PixmoAskModelAnythingDataset( nikg4 reviewed Mar 19, 2025 View reviewed changes...
Describe your changes In this PR we update the playwright dependency in preparation for Python 3.13 (see this PR: #9635) The removal of Python 3.8 support is broken out into this PR which should be merged first: #9919 Here is the Files changed tab withou
Changes Made Modified if nrows == 0 in core/frame.py. Added test in tests/frame/test_constructors.py. Testing Added test case for empty DataFrame column retention. Verified locally with pytest. df=pd..from_records(iter(rows),columns=['col_1','Col_2'],nrows=0) ...
Summary of Changes: Enhanced the error messaging in the .query() method for pandas DataFrames when duplicate column names are present. Prior to this change, invoking .query() on a DataFrame with d...