varsha Parthasarathy
11/03/2022, 7:10 PMflytekit.core.type_engine.RestrictedTypeError: Transformer for type <class 'tuple'> is restricted currently
Ketan (kumare3)
Niels Bantilan
11/03/2022, 8:14 PMRupsha Chaudhuri
12/16/2022, 9:35 PMvarsha Parthasarathy
12/16/2022, 9:57 PMRupsha Chaudhuri
12/16/2022, 9:57 PMKetan (kumare3)
Rupsha Chaudhuri
12/16/2022, 11:18 PMNiels Bantilan
12/19/2022, 3:12 PMtuple[int, int] # two integers
tuple[int, ...] # any number of integers
# more generally
tuple[T1, T2] # 2-tuple of types T1 and T2 respectively
tuple[T1, T2, ..., Tn] # etc...
I think at the very least we should have better support for NamedTuple
so that it can be arbitrarily nested.Ketan (kumare3)
Rupsha Chaudhuri
12/28/2022, 12:23 AMf"Failed to extract schema for object {t}, (will run schemaless) error: {e}"
f"If you have postponed annotations turned on (PEP 563) turn it off please. Postponed"
f"evaluation doesn't work with json dataclasses"
Now 1 workaround would be to pass it around as a dictionary.. and then convert back to a dataframe but wondering if there’s a cleaner solutionKetan (kumare3)
Kevin Su
12/28/2022, 12:56 AMKetan (kumare3)
Rupsha Chaudhuri
12/28/2022, 12:57 AMWe won't register PyTorchCheckpointTransformer, PyTorchTensorTransformer, and PyTorchModuleTransformer because torch is not installed.
We won't register bigquery handler for structured dataset because we can't find the packages google-cloud-bigquery-storage and google-cloud-bigquery
Not sure where these requirements are suddenly coming from