Skip to content

Commit

Permalink
walk back iteration change and add appropriate compat to RLS
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjaffray committed Mar 27, 2024
1 parent 2c34930 commit 83e52d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ NFFT = "0.13.3"
NFFTTools = "0.2.6"
Plots = "1.38.16"
ROMEO = "1.0.1"
RegularizedLeastSquares = "0.13"
RegularizedLeastSquares = "0.9.1"
Scratch = "1.2.0"
Statistics = "1.9.0"
StatsBase = "0.33.21"
Expand Down
2 changes: 1 addition & 1 deletion example/recon_config_joss_demo.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ params_general[:do_normalize_recon] = false; # if true, set the range of
# General parameters for reconstruction:
params_general[:num_adc_samples] = 15650 # total number of ADC points BEFORE the rewinder at the end of the spiral readout. Need to check with data. # 15504 for 523, 15655 for gradient 508
params_general[:recon_size] = [200, 200, 1] # the matrix size of the reconstructed images. Needs to specify 1 on Z dimension for 2D images
params_general[:num_recon_iterations] = 80 # number of recon iterations (for both Cartesian and Spiral recon)
params_general[:num_recon_iterations] = 40 # number of recon iterations (for both Cartesian and Spiral recon)
params_general[:b0_map_beta] = 0.1 # for estimate_b0_maps, * `β` - Regularization parameter controlling roughness penalty (larger = smoother, default 5e-4)
params_general[:saving_scalefactor] = 1.0e9 # typical range of recon intensities is 1e-7, rescale when saving, e.g., to 0...1000 roughly for fMRI analysis
params_general[:num_virtual_coils] = 8 # if perform coil compression, the number of coils to be compressed to
Expand Down

2 comments on commit 83e52d4

@alexjaffray
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/103722

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.3 -m "<description of version>" 83e52d474424f19a8f3b270677f666562ea3a983
git push origin v0.1.3

Please sign in to comment.