Skip to content

Commit

Permalink
address issue #50
Browse files Browse the repository at this point in the history
  • Loading branch information
jplalor committed Dec 21, 2023
1 parent 2417485 commit 74e7b76
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.4.12] - 2023-12-21

- Write item IDs to disk for train_and_evaluate.

## [0.4.11] - 2023-12-21

- Fix an issue with cli.evaluate.


## [0.4.10] - 2023-04-12

- Fix an issue with codecov, and also allow for Python 3.10 and 3.11.
Expand Down
2 changes: 1 addition & 1 deletion py_irt/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def train_and_evaluate(
outputs.append(
{
"subject_id": dataset.observation_subjects[i],
# "example_id": dataset.observation_items[i],
"example_id": dataset.observation_items[i],
"response": dataset.observations[i],
"prediction": preds[i],
}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "py-irt"
version = "0.4.11"
version = "0.4.12"
readme = "README.md"
homepage = "https://github.com/nd-ball/py-irt/"
description = "Bayesian IRT models in Python"
Expand Down

0 comments on commit 74e7b76

Please sign in to comment.