Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/introduction/data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ These download the desired datasets or load them from local storage if previousl

To specify the dataset to be loaded, the data category (``data_name``) must be
specified, alongside category-specific keyword arguments. For the full list
of available datasets, please see the `datasets website <https://pennylane.ai/qml/datasets.html>`_.
of available datasets, please see the `datasets website <https://pennylane.ai/datasets>`_.
The :func:`~pennylane.data.load` function returns a ``list`` with the desired data.

>>> H2datasets = qml.data.load("qchem", molname="H2", basis="STO-3G", bondlength=1.1)
Expand Down
2 changes: 1 addition & 1 deletion pennylane/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""The data subpackage provides functionality to access, store and manipulate `quantum datasets <https://pennylane.ai/qml/datasets.html>`_.
"""The data subpackage provides functionality to access, store and manipulate `quantum datasets <https://pennylane.ai/datasets>`_.

.. note::

Expand Down
4 changes: 2 additions & 2 deletions pennylane/data/data_manager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def load( # pylint: disable=too-many-arguments
):
r"""Downloads the data if it is not already present in the directory and returns it as a list of
:class:`~pennylane.data.Dataset` objects. For the full list of available datasets, please see
the `datasets website <https://pennylane.ai/qml/datasets.html>`_.
the `datasets website <https://pennylane.ai/datasets>`_.

Args:
data_name (str) : A string representing the type of data required such as `qchem`, `qpsin`, etc.
Expand Down Expand Up @@ -246,7 +246,7 @@ def list_datasets() -> dict:
**Example:**

Note that the results of calling this function may differ from this example as more datasets
are added. For updates on available data see the `datasets website <https://pennylane.ai/qml/datasets.html>`_.
are added. For updates on available data see the `datasets website <https://pennylane.ai/datasets>`_.

>>> available_data = qml.data.list_datasets()
>>> available_data.keys()
Expand Down