NiPreps TechMon
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Help
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # Technical Monitoring (notes) :::info - **Date:** January 21, 2025 @ 12 pm EST - **Participants:** OE, CM, MH, EM, MG, JHL, TS ::: :::success ## Agenda 1. *NiPreps Hack* (NSC reporting) * Dates, location, overall goals/projects * Formally invite all TechMon attendees * Trigger brainstorming * https://hackmd.io/I68ejqi0Tf61W88K0RUyZw 1. fMRIPrep telemetry with Sentry * Analysis code: https://github.com/nipreps/fmriprep_stats/blob/master/notebooks/fmriprep_stats.ipynb * Success rate slowly receding ![fmriprep usage](https://www.nipreps.org/assets/20250102_weekly.png) * Starting with 23.x versions ![fmriprep versions](https://www.nipreps.org/assets/20250102_versionstream.png) * [nipreps/fmriprep#3419](https://github.com/nipreps/fmriprep/issues/3419) (We do not register 24.x success pings) * Change in Sentry API for submission? * Change in Sentry API for retrieval? * Regression? * Failure? * Same trend with Migas? * Where are the error reports being centralized? [Question from the ignorance JHL] 1. Migration to Migas * Are we ready? * If not, can we automate Sentry analytics? 1. *NiFreeze* * [NEW] Refactor of the dataset data structure [nipreps/nifreeze#52](https://github.com/nipreps/nifreeze/pull/52). * [NEW] [nipreps/nifreeze#62](https://github.com/nipreps/nifreeze/pull/62) [Proposal of new model to stack estimators](https://github.com/nipreps/nifreeze/issues/12#issuecomment-2598471780): * The feature/problem: head motion estimation is usually run in several *passes* (levels), where in the beginning very fast and coarse registration settings initialize more precise (and slow) later levels with more sophisticated transforms and generation models. For example, you'd typically run a very fast head motion estimation with a downsampled version of the dataset and a relatively simple model (e.g., DKI), followed by our GPR and a low-degree polynomial or bspline transform for eddy at the full resolution of the image. * Currently, we have a loop and several parameters (model, align_kwargs, etc.) must be synchronized. The approach has demonstrated very brittle and hard to maintain. * A simpler approach of stacking estimators is being proposed: ```Python estimator_level1 = Estimator(model="b0", ...) # 6-dof estimator_level2 = Estimator( model="b0", input=estimator_level1, ..., ) # 9-dof registration estimator_level3 = Estimator( model="gpr", input=estimator_level2, ..., ) # bspline registration estimator_level3.fit(dataset_object) ``` This works because the dataset object keeps the status, and the transforms are updated properly. * Presubmission inquiry sent to *Nat Comput Sci*. * Archiving date on *eddymotion* repo needs fixing. 1. Type Hints & pytest error on warning * [nipreps/nifreeze#24](https://github.com/nipreps/nifreeze/issues/24) * [nipreps/nifreeze#28](https://github.com/nipreps/nifreeze/pull/28). Any chance to review @effigies? * Error on warning: [nipreps/nireports#156](https://github.com/nipreps/nireports/pull/156), [nipreps/nireports#157](https://github.com/nipreps/nireports/pull/157), [nipreps/nifreeze#40](https://github.com/nipreps/nifreeze/pull/40), [nipreps/mriqc#1370](https://github.com/nipreps/mriqc/pull/1370). `nifreeze` PR was merged: @effigies mind sparing some time to tell your opinion on this? 1. *Nireports*: * Resolving a ToDo task: requires review: [nipreps/nireports#151](https://github.com/nipreps/nireports/pull/151) @eilidhmacnicol @oesteban 1. Transition default branch names across *NiPreps* to `main` * Including any dataset repositories, e.g. [nipreps-data/tests-nifreeze](https://gin.g-node.org/nipreps-data/tests-nifreeze) 1. Some workflows using `actions/cache` not saving cache properly: [nipreps/nireports#161](https://github.com/nipreps/nireports/issues/161), [nipreps/sdcflows#475](https://github.com/nipreps/sdcflows/pull/475) 1. Nibabies XFM outputs * multi-step registration currently concatenated into single composite transform * TS: Pre-change, anat-to-MNI disassembled into affine_00, warp_01 and MNI-to-anat disassembled into warp_00, affine_01. * TS: Post-change, anat-to-MNI disassembles into affine_00, warp_01, affine_02, warp_03 and MNI-to-anat disassembles into affine_00, warp_01, affine_02, warp_03 (not warp first). * TS: Meeting with MG, Erik Lee, Matt Cieslak later today. * workaround for nitransforms loading (https://github.com/nipreps/nibabies/pull/430) - should be ported over? 1. McKenzie's white paper (response to reviews deadline: Jan 31). ::: ::: warning ## Topics pushed away to next week 1. MRIQC documentation * *group* analysis when no level is specified * *group* analysis on an *individual* analysis ::: ## Notes ### Telemetry * The [Sentry dashboard](https://docs.sentry.io/product/dashboards/) inspection shows that the events are being gathered, and there is successful executions that are shown with the 24.x version, so the most likely hypothesis is that [the notebook](https://github.com/nipreps/fmriprep_stats/blob/master/notebooks/fmriprep_stats.ipynb) is not working properly. * There is a private Sentry dahsboard that gathers the collected information and displays it in a friendly way. * Transition to Migas: we never tested Migas against the Sentry (the latter being considered as a ground truth), so that would need to be checked prior to transitioning. * MG: prepare some stats for next TechMon. ### NiFreeze * Have not heard about the presubmission inquiry yet. * Model for stacking estimators * Uncertain the best software engineering approach about the data/data representation entities when modifying the intermediate results. Suggestions/reviews are welcome. * [Ongoing PR](https://github.com/nipreps/nifreeze/pull/62). ### Default branch names * Have `master` as theirs * Code: [nipreps/dmriprep](https://github.com/nipreps/dmriprep), [nipreps/fmriprep](https://github.com/nipreps/fmriprep), [nipreps/fmriprep-rodents](https://github.com/nipreps/fmriprep-rodents), [nipreps/micro-nipype](https://github.com/nipreps/micro-nipype), [nipreps/migas-server](https://github.com/nipreps/migas-server), [nipreps/mriqc](https://github.com/nipreps/mriqc), [nipreps/mriqcwebapi](https://github.com/nipreps/mriqcwebapi), [nipreps/nibabies](https://github.com/nipreps/nibabies), [nipreps/nirodents](https://github.com/nipreps/nirodents), [nipreps/niworkflows](https://github.com/nipreps/niworkflows), [nipreps/nondefaced-detector](https://github.com/nipreps/nondefaced-detector), [nipreps/sdcflows](https://github.com/nipreps/sdcflows), [nipreps/smriprep](https://github.com/nipreps/smriprep) * Data: [nipreps-data/bcp](https://gin.g-node.org/nipreps-data/bcp), [nipreps-data/bcp-derivatives](https://gin.g-node.org/nipreps-data/bcp-derivatives), [nipreps-data/bootcamp-geneva-2024](https://gin.g-node.org/nipreps-data/bootcamp-geneva-2024), [nipreps-data/brain-extraction-tests](https://gin.g-node.org/nipreps-data/brain-extraction-tests), [nipreps-data/hcph-mini](https://gin.g-node.org/nipreps-data/hcph-mini). [nipreps-data/hbn-mriqc](https://gin.g-node.org/nipreps-data/hbn-mriqc), [nipreps-data/HCP101006](https://gin.g-node.org/nipreps-data/HCP101006), [nipreps-data/HCP101006-derivatives](https://gin.g-node.org/nipreps-data/HCP101006-derivatives), [nipreps-data/tests-nifreeze](https://gin.g-node.org/nipreps-data/tests-nifreeze) * CM: Many GHA workflow files have the `master` name hard-coded as the target branches, so maybe prior to renaming both `main` and `master` should be added.

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully