raster-vision
raster-vision copied to clipboard
An open source library and framework for deep learning on satellite and aerial imagery.
## π Bug When running training command and having `root_uri` set to an S3 folder, this error shows up: ``` make: s3:///predictions/Makefile: No such file or directory make: *** No...
## Problem Raster Vision (RV) is a [framework](https://en.wikipedia.org/wiki/Software_framework). To use it, users must configure the RV pipeline by defining a `get_config()` function. This has the following disadvantages: - Even the...
When putting the `get_config` function in the same module as the `Pipeline` and `PipelineConfig`, we got a `RegistryError`, saying that the type_hint had already been registered. I'm not sure why...
## π Feature Support multi-GPU training and prediction. ## Motivation Distributing the workload across multiple GPUs can considerably speed up the training and prediction process.. ## Pitch PyTorch provides [at...
Here are some rough notes on lower-priority things I wanted to do in the 0.12 release, but didn't have time for. - [ ] docker image badge broken - [...
Currently we use a sliding window with 50% overlap for making predictions in object detection in order to make sure that objects will appear wholly (ie. untruncated) within some window....
To run a pipeline, you point the `run` CLI at a file with a `get_config` function that returns an instance of `PipelineConfig`. This is useful for storing particular configurations especially...
Instead, it writes it to the `root_uri` which might be an S3 URI, and `make`, which is used by the local runner cannot handle that.
## π Feature See the following discussion on Gitter: https://gitter.im/azavea/raster-vision?at=6298bff6ef00bd1dc60fc7ee `ObjectDetectionGeoDataWindowConfig` should allow `neg_ratio` to be `None` since `ObjectDetectionRandomWindowGeoDataset` allows it. ## Motivation It's a feature that already exists. This...
Updates the requirements on [pillow](https://github.com/python-pillow/Pillow) to permit the latest version. Release notes Sourced from pillow's releases. 9.2.0 https://pillow.readthedocs.io/en/stable/releasenotes/9.2.0.html Changes Fixed null check for fribidi_version_info in FriBiDi shim #6376 [@βnulano] Added...