Nicolas
Nicolas
Hi, Thanks for your replies. Here are two answers to your remarks. - The benefit is that if you want to apply pgmpy to a dataframe which is too big...
Hello, we got this error in our GitHub Actions (following https://devenv.sh/integrations/github-actions/#run-multiple-commands) since yesterday. Would you know how to revert to the previous version in the GitHub Actions?
I'd also be interested in an example. If I try to use this ``` price: Series[pa.Decimal(28, 2)] = pa.Field(nullable=True) ``` I got this error : ```shell TypeError: Cannot interpret 'DataType(Decimal(28,...
I use ```python exp = 3 def coerce(value: float) -> Decimal: return Decimal(value).quantize(Decimal(f"1e-{exp}")) MyDecimalType = Annotated[ Decimal, Field(decimal_places=exp), BeforeValidator(coerce), ], ```
To me the question was how to fix a decimal precision in the type.
I'd also be interested in having the ability to translate `multipleOf` float as `Decimal`. Maybe it could take the form of an option?
Ah right I didn't think to this way. In our case, some of the external endpoints send back to us an id and some pieces of information that we use...
Great, I will make a PR then.
@merelcht I see, regarding the use of `TextDataset` it was really to reduce the maintenance/test burden by relying on a maintained dataset while keeping the interface simple. When you say...
For your information, I implemented a custom APIDataset with a nested dataset to store the response. I got inspired by the partitioned dataset. I didn't go for the open context...