diff --git a/README.md b/README.md index 5c633bf7c..83f90df1f 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 diff --git a/docs/experiments.rst b/docs/experiments.rst index 019437fd8..fffa4e7d2 100644 --- a/docs/experiments.rst +++ b/docs/experiments.rst @@ -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 `_. +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 `_. .. code:: @@ -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 `_. +Here is an example of configuring a ``SemanticSegmentationLabelSource`` using rasterized vector data. A complete example using this is in the `Spacenet Vegas example `_. .. code:: diff --git a/docs/misc.rst b/docs/misc.rst index 05e455deb..89175f92b 100644 --- a/docs/misc.rst +++ b/docs/misc.rst @@ -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 `_ 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 `_ 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. diff --git a/rastervision/version.py b/rastervision/version.py index f14ae6320..5281863a3 100644 --- a/rastervision/version.py +++ b/rastervision/version.py @@ -1,2 +1,2 @@ """Library verison""" -__version__ = '0.9.0' +__version__ = '0.10.0'