Ashwin Nair

Results 57 comments of Ashwin Nair

Modification to `RasterDataset` ```diff class RasterDataset(GeoDataset): """Abstract base class for :class:`GeoDataset` stored as raster files.""" #: Glob expression used to search for files. #: #: This expression should be specific...

Great. I'll push a PR tomorrow (once mypy is satisfied) and we can continue from there.

Looks like we can remove Sentinel2's `__init__`

@calebrob6 I've added the plot method to the SpaceNet baseclass so all currently implemented SpaceNet datasets (1,2,4,7) can be plotted.

Same problem here. Any update on this issue? This is what my class looks like ``` class Pipeline: """ Basic pipeline Args: val (str): Test value Attributes: val (str): Test...

You can use the latest version of `poetry-core` by specifying the following in your `pyproject.toml` ```toml [build-system] requires = ["poetry-core @ git+https://github.com/python-poetry/poetry-core.git"] build-backend = "poetry.core.masonry.api" ```

The subdirectory param needs to be added to the [poetry-schema](https://github.com/python-poetry/poetry-core/blob/main/src/poetry/core/json/schemas/poetry-schema.json) in poetry-core for this to work. Opened python-poetry/poetry-core#398 to address this.

This requires #5172 and python-poetry/poetry-core#398 for tests to pass. Former adds subdirectory support for locker (5e8b9ef8a9f95d8f14b6679431ae7a62367d8053) and the latter is required for `UrlDependency` with subdirectory support and schema updates.