From d75b7a77a9de53c97dda1c36aa3f708f3ca240c8 Mon Sep 17 00:00:00 2001 From: Baxter Eaves Date: Mon, 5 Feb 2024 12:31:19 -0600 Subject: [PATCH] Add more docs on flat_columns in pylace --- pylace/lace/engine.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pylace/lace/engine.py b/pylace/lace/engine.py index dbf486ca..bc735869 100644 --- a/pylace/lace/engine.py +++ b/pylace/lace/engine.py @@ -87,7 +87,11 @@ def from_df( rng_seed: int, optional Random number generator seed. flat_columns: bool - Initialize all states with one view + Initialize all states with one view. Use when you do not want to + do inference over the assignment of columns to views. Note that to + keep the states flat you will have to either use the `flat` + transition set or manually create a transition set that does not + update the column assignments when updating. Examples --------