Skip to content

Commit

Permalink
Merge pull request #836 from azavea/lf/0.10
Browse files Browse the repository at this point in the history
Version 0.10
  • Loading branch information
lewfish committed Oct 2, 2019
2 parents 4ba9526 + 79e951e commit f08f931
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ There are several ways to setup Raster Vision:
- We publish a new tag per merge into `master`, which is tagged with the first 7 characters of the commit hash. To use the latest version, pull the `latest` suffix, e.g. `raster-vision:pytorch-latest`. Git tags are also published, with the Github tag name as the Docker tag suffix.
* Raster Vision can be installed directly using `pip install rastervision`. However, some of its dependencies will have to be installed manually.

For more detailed instructions, see the [Setup docs](https://docs.rastervision.io/en/0.9/setup.html).
For more detailed instructions, see the [Setup docs](https://docs.rastervision.io/en/0.10/setup.html).

### Example

Expand Down Expand Up @@ -150,7 +150,7 @@ Raster Vision uses a unittest-like method for executing experiments. For instanc
> rastervision run local -p tiny_spacenet.py
```

See the [Quickstart](https://docs.rastervision.io/en/0.9/quickstart.html) for a more complete description of running this example.
See the [Quickstart](https://docs.rastervision.io/en/0.10/quickstart.html) for a more complete description of running this example.

### Resources

Expand Down
4 changes: 2 additions & 2 deletions docs/experiments.rst
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ A ``VectorSource`` is an object that supports reading vector data like polygons
VectorSourceConfig
...................

Here is an example of configuring a ``VectorTileVectorSource`` which uses Mapbox vector tiles as a source of labels. A complete example using this is in the `Spacenet Vegas example <https://github.com/azavea/raster-vision-examples/tree/0.9#spacenet-vegas-roads-and-buildings>`_.
Here is an example of configuring a ``VectorTileVectorSource`` which uses Mapbox vector tiles as a source of labels. A complete example using this is in the `Spacenet Vegas example <https://github.com/azavea/raster-vision-examples/tree/0.10#spacenet-vegas-roads-and-buildings>`_.

.. code::
Expand All @@ -319,7 +319,7 @@ LabelSource

A ``LabelSource`` is an object that allows reading ground truth labels for a scene. There are subclasses for different tasks and data formats. They can be queried for the labels that lie within a window and are used for creating training chips, as well as providing ground truth labels for evaluation against validation scenes.

Here is an example of configuring a ``SemanticSegmentationLabelSource`` using rasterized vector data. A complete example using this is in the `Spacenet Vegas example <https://github.com/azavea/raster-vision-examples/blob/0.9/spacenet/vegas.py>`_.
Here is an example of configuring a ``SemanticSegmentationLabelSource`` using rasterized vector data. A complete example using this is in the `Spacenet Vegas example <https://github.com/azavea/raster-vision-examples/blob/0.10/spacenet/vegas.py>`_.

.. code::
Expand Down
2 changes: 1 addition & 1 deletion docs/misc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ DNS of the machine running the training command.
Model Defaults
--------------

Model Defaults allow you to use a single key to set default attributes into backends instead of having to explicitly state them. This is useful for, say, using a key to refer to the pretrained model weights and hyperparameter configuration of various models. Each ``Backend`` can interpret its model defaults differently. For more information, see the `rastervision/backend/model_defaults.json <https://github.com/azavea/raster-vision/blob/0.9/rastervision/backend/model_defaults.json>`_ file.
Model Defaults allow you to use a single key to set default attributes into backends instead of having to explicitly state them. This is useful for, say, using a key to refer to the pretrained model weights and hyperparameter configuration of various models. Each ``Backend`` can interpret its model defaults differently. For more information, see the `rastervision/backend/model_defaults.json <https://github.com/azavea/raster-vision/blob/0.10/rastervision/backend/model_defaults.json>`_ file.

You can set the model defaults to use a different JSON file, so that plugin backends can create model defaults or so that you can override the defaults provided by Raster Vision. See the :ref:`rv config section` Configuration Section for that config value.

Expand Down
2 changes: 1 addition & 1 deletion rastervision/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Library verison"""
__version__ = '0.9.0'
__version__ = '0.10.0'

0 comments on commit f08f931

Please sign in to comment.