Vlada Dusek
Vlada Dusek
I used your config with updated sizes of anchors. It went well during first epoch but when the first epoch ended and it came to compute validation loss this exception...
## Problem description ### Aborting the last Actor run does not work - Resulting in: ``` apify_client._errors.ApifyApiError: We have bad news: there is no API endpoint at this URL. Did...
We have introduced [apify-shared-python](https://github.com/apify/apify-shared-python) to consolidate general constants for both the Client and SDK. To facilitate a seamless transition to the new package, we have implemented re-imports with `DeprecationWarning` in...
Utilizing star imports, such as `from apify_client import *`, is generally considered as a bad practice in Python. This is because it can lead to namespace conflicts. While there may...
It seems that the following code: ```python response: httpx.Response = await self.http_client.call( url=self._url(f'records/{key}'), method='GET', params=self._params(), ) ``` returns a response of type `httpx.Response`. Later the field `_maybe_parsed_body` is accessed: ```python...
Do not use `Any` type as suggested in the [ANN401](https://docs.astral.sh/ruff/rules/any-type/). Instead of ```python from typing import Any def get_first(container: list[Any]) -> Any: return container[0] ``` use generic type ```python from...
I believe we can use just `poetry` instead of `pip`, `virtualenv`, `setuptools` and `twine` (although, it uses some of them under the hood). https://python-poetry.org/
Remove ignoring of `SLF001` violation from `pyproject.toml` and then remove underscores from all non-private members.
Respect the `APIFY_DEFAULT_XXX_ID` env var in `BaseResourceClient` https://github.com/apify/apify-sdk-python/blob/v1.3.0/src/apify/_memory_storage/resource_clients/base_resource_client.py#L116
https://github.com/apify/apify-sdk-python/tree/v1.3.0/src/apify/scrapy