From f9d09c0adda04a135c7b1dad68e868eeb50fad84 Mon Sep 17 00:00:00 2001 From: hlums Date: Mon, 19 Aug 2019 17:58:13 -0400 Subject: [PATCH] Update title hyper links. --- utils_nlp/common/README.md | 2 +- utils_nlp/dataset/README.md | 2 +- utils_nlp/eval/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils_nlp/common/README.md b/utils_nlp/common/README.md index 310944f0c..6de0affda 100644 --- a/utils_nlp/common/README.md +++ b/utils_nlp/common/README.md @@ -1,4 +1,4 @@ -## [Common](common) +## [Common](.) This submodule contains high-level common utilities used across multiple algorithms and frameworks as well as helper functions for managing aspects of different frameworks like pytorch. For example, [pytorch_utils.py](./pytorch_utils.py) contains utilities to interact with PyTorch like getting a device architecture (cpu or gpu), moves a model to a specific device, and handles parallelism when multiple gpus are present. diff --git a/utils_nlp/dataset/README.md b/utils_nlp/dataset/README.md index 27d742a01..021e0ddc5 100644 --- a/utils_nlp/dataset/README.md +++ b/utils_nlp/dataset/README.md @@ -1,4 +1,4 @@ -## [Dataset](dataset) +## [Dataset](.) This submodule includes helper functions for downloading datasets and formatting them appropriately as well as utilities for splitting data for training / testing. ## Data Loading diff --git a/utils_nlp/eval/README.md b/utils_nlp/eval/README.md index 65dca75fa..6dc5e76df 100644 --- a/utils_nlp/eval/README.md +++ b/utils_nlp/eval/README.md @@ -1,2 +1,2 @@ -## [Evaluation](eval) +## [Evaluation](.) The evaluation (eval) submodule includes functionalities for computing metrics for evaluating NLP model performance. There are general evaluation metrics like accuracy, precision, recall, and f1 scores for classification scenarios. In addition, we also include evaluation utilities for specialized tasks like question answering and sentence embedding.