Robbie Palmer
Robbie Palmer
Hi @ahmedsamirio unfortunately nothing better than the forced garbage collection after every prediction as outlined in the issue
I hadn't seen this issue but noticed this too while making other changes So currently bundled up in this PR https://github.com/microsoft/presidio-research/pull/50 But can easily be pulled out into a different...
I'm having the same issue with using `Interval` only using `str(q)` doesn't solve my problem as I'm generating SQL for GCP BigQuery which requires me to remove all quote chars...
@omri374 I'm sorry for the really long delay! I've been pulled into a number of unrelated projects these past few months No availability this coming week, but I'll prioritise addressing...
Hi @omri374, I've fixed the issue with Python 3.7, added a test, added to the docs and updated the Generate data notebook Wrt the naming, my instinct would be to...
@omri374 the PR diff is now showing only the changes from this branch I edited the PR to point to another branch then edited it to point back to master...
@YKCzoli `pip install git+https://github.com/wdm0006/pygeohash` works for me As does the alternative `pip install 'pygeohash @ git+https://github.com/wdm0006/pygeohash'` mentioned in that linked article
@KenCox94, any word on a new PR for migrating this library from `hyper` to `httpx`? I have just opened an issue that requires the `httpx` migration #120
@marcosschroh if using pydantic it's readily available through the `__pydantic_generic_metadata__` field: [Docs](https://docs.pydantic.dev/latest/api/base_model/#pydantic.BaseModel) e.g. ``` class MyModel(BaseModel, Generic[T]): def operate_on_assigned_type(self) -> T: generic_type_class: T = self.__class__.__pydantic_generic_metadata__["args"][0] return generic_type_class.foo() ```