Skip to content

Commit 94b421c

Browse files
authored
build: release v0.1.0 (#116)
2 parents 83b6363 + 0482cde commit 94b421c

File tree

5 files changed

+19
-13
lines changed

5 files changed

+19
-13
lines changed

.github/workflows/validate_pr_title.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ jobs:
1414
- name: "PR Conventional Commit Validation"
1515
uses: ytanikin/pr-conventional-commits@1.4.0
1616
with:
17-
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert", "data"]'
17+
task_types: '["feat","build","fix","docs","test","ci","refactor","perf","chore","revert", "data"]'
1818
add_label: 'false'

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
## Release 0.1.0
4+
5+
- Adding benchmark implementations for 15 benchmarks.
6+
- Adding CLI tool that can (a) run benchmarks and (b) display a GUI for
7+
visualization of benchmark results.
8+
- Adding code for public leaderboard page only displayed on the
9+
HuggingFace leaderboard of MLIP models.
10+
- Adding extensive code documentation with tutorials.
11+
- Adding extensive unit test coverage.

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@
66
[![Tests and Linters](https://github.com/instadeepai/mlipaudit/actions/workflows/tests_and_linters_and_docs_build.yaml/badge.svg?branch=main)](https://github.com/instadeepai/mlipaudit/actions/workflows/tests_and_linters_and_docs_build.yaml)
77
![badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/mlipbot/e7c79b17c0a9d47bc826100ef880a16f/raw/pytest-coverage-comment.json)
88

9-
## ⚠️ Disclaimer
10-
11-
This repository is currently in pre-release mode. Official release of v0.1.0 will be
12-
communicated soon.
13-
149
## 👀 Overview
1510

1611
**MLIPAudit** is a Python library and app for benchmarking and
@@ -189,9 +184,9 @@ Massimo Bortone, Jack Sawdon, Olivier Peltre and Alex Laterre.
189184

190185
## 📚 Citing our work
191186

192-
We kindly request that you to cite our white paper
187+
We kindly request that you to cite [our white paper](https://arxiv.org/abs/2511.20487)
193188
when using this library:
194189

195-
L. Wehrhan, L. Walewski, M. Bluntzer, H. Chomet, C. Brunken, J.Tilly and
190+
L. Wehrhan, L. Walewski, M. Bluntzer, H. Chomet, J.Tilly, C. Brunken and
196191
S. Acosta-Gutiérrez, *MLIPAudit: A benchmarking tool for Machine
197-
Learned Interatomic Potentials*, soon on arXiv.
192+
Learned Interatomic Potentials*, arXiv, 2025, arXiv:2511.20487.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mlipaudit"
3-
version = "0.0.1a3"
3+
version = "0.1.0"
44
description = "Library and CLI tool for benchmarking ML Interatomic Potentials"
55
readme = "README.md"
66
authors = [

src/mlipaudit/ui/leaderboard.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@ def leaderboard_page(
139139
"""
140140
MLIPAudit is a Python tool for benchmarking and validating
141141
Machine Learning Interatomic Potentials (MLIP) models,
142-
specifically those written in mlip-jax. It aims to cover
143-
a wide range of use cases and difficulties, providing users
144-
with a comprehensive overview of the performance of their models.
142+
specifically those based on the [mlip](https://github.com/instadeepai/mlip)
143+
library. It aims to cover a wide range of use cases and difficulties, providing
144+
users with a comprehensive overview of the performance of their models.
145145
"""
146146
)
147147

0 commit comments

Comments
 (0)