Towards AI

The leading AI community and content platform focused on making AI accessible to all. Check out our new course platform: https://academy.towardsai.net/courses/beginner-to-advanced-llm-dev

Follow publication

How to use TorchMetrics

Mattia Gatti
Towards AI
Published in
5 min readAug 30, 2022

--

Image by Thomas Wolter from Pixabay

Table of content

pip install torchmetrics

1. How the Metric class work

Main methods of the Metric class. Image generated by using diagrams.

2. What is a Metric Collection?

MetricCollection. Image generated by using diagrams.

3. How to implement a custom metric

A custom Metric. Image generated by using diagrams.

4. Using TorchMetrics with PyTorch Lightning

def validation_epoch_end(self, outputs):
results = metric_collection.compute()
print(results)
self.metric_collection.reset()

Concluding Remarks

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in Towards AI

The leading AI community and content platform focused on making AI accessible to all. Check out our new course platform: https://academy.towardsai.net/courses/beginner-to-advanced-llm-dev

Written by Mattia Gatti

Currently doing research into AI Remote Sensing. Writing about Deep Learning and Geospatial Data Analysis.

Responses (1)

Write a response