Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

14 multi threading throws error when evaluate generates dataframe #15

Merged
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Version [1.0.4] - 2024-11-06
## Version [1.1.1] - 2024-11-13

### Changed

- Removed a small bug introduced in `v1.1.0`. [#14]

## Version [1.1.0] - 2024-11-06

### Changed

Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TaijaParallel"
uuid = "bf1c2c22-5e42-4e78-8b6b-92e6c673eeb0"
authors = ["Patrick Altmeyer <[email protected]>"]
version = "1.1.0"
version = "1.1.1"

[deps]
CounterfactualExplanations = "2f13d31b-18db-44c1-bc43-ebaf2cff0be0"
Expand Down
2 changes: 1 addition & 1 deletion src/CounterfactualExplanations.jl/threads/evaluate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function TaijaBase.parallelize(
args = zip(counterfactuals, meta_data)

# Preallocate:
evaluations = Vector{Vector}(undef, length(args))
evaluations = Vector(undef, length(args))

# Verbosity:
if verbose
Expand Down
Loading