Schefflera-Arboricola
    • Create new note
    • Create a note from template
      • 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
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me 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
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • 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 Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy 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
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me 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
    # nx-parallel meetings meeting link: https://colgate.zoom.us/j/281534728 notes: https://hackmd.io/vlGWcfRsQF64OTIm7bCtpw?both ### Date - 25th Oct, 2024 **Attendees** : Aditi, Derek ### Topics - https://github.com/networkx/nx-parallel/pull/86 - https://github.com/networkx/nx-parallel/pull/72 - https://scikit-learn-general.narkive.com/LR2bD7eS/grid-search-joblib#:~:text=Post%20by%20Satrajit%20Ghosh%0Adoes,scope%20of%20joblib%2C%20I%20believe ### Date - 11th Oct, 2024 **Attendees** : Aditi, Rick, Dan ### Topics - temporary fixing https://github.com/networkx/networkx/issues/7671 : https://github.com/networkx/nx-parallel/pull/87 - test this at networkx's level - discussions on `spatch` - Tests for backends - to check if the entry_points and other things are working fine for each backend - these can be centralised tests that backends can use ### Topics for next meeting - handling cases like in https://github.com/networkx/nx-parallel/pull/72 - i.e. `Parallel(n_jobs=(no_of_primary - 1) ** 2, require="sharedmem")` ### Date - 4th Oct, 2024 **Attendees** : Aditi, Derek ### Topics - Demo of a really nice (private) networkx backend by Derek! - discussions on distributed support in nx-parallel - https://ml.dask.org/joblib.html - https://joblib.readthedocs.io/en/latest/auto_examples/parallel/distributed_backend_simple.html - https://docs.dask.org/en/stable/deploying.html#distributed-computing - Discussion on https://github.com/networkx/nx-parallel/pull/86 - Derek will address the review comments and then get more perspectives on it - Should we add the graph conversion `if` condition in the same decorator that we use for setting configs or a separate decorator or just leave it how it is right now i.e. not in a decorator? - more perspectives needed on this ### Date - 27th Sept, 2024 **Attendees** : Aditi, Derek ### Topics - https://github.com/networkx/nx-parallel/pull/80 got merged!! :tada::tada: - `execute_parallel` function's concept - move `create_iterables` inside it - should we have `"nodes"`, `"edges"`, `"isolates"`, `"pairs"` in `create_iterables`? - [Aditi] This seems restricting in some ways. - derek will create a PR about it! ### Date - 20th Sept, 2024 **Attendees** : Aditi, Derek ### Topics - making PR https://github.com/networkx/nx-parallel/pull/80 ready to be merged! - update the pre-commit hooks for them to act more uniformly across machines, editors etc. - chunks of size `n` or `n` number of chunks? - memory management or time - we do pass `n_jobs` as `n` in the `chunks` function - but smaller chunks might be better but also bad in terms of memory as more the number of chunks more will be the memory usage. and what about time? - https://joblib.readthedocs.io/en/latest/auto_examples/memory_basic_usage.html , https://github.com/scikit-learn/scikit-learn/blob/6fd2f8372227ac394cd3dd5cd96d110fa49355b8/sklearn/pipeline.py - Adding caching in nx-parallel : https://joblib.readthedocs.io/en/latest/auto_examples/nested_parallel_memory.html#sphx-glr-auto-examples-nested-parallel-memory-py - shared memory not possible in nx-parallel - [Derek] more flexibility in nx-parallel is possible beyond allowing the modification of parallel parameters from `joblib.parallel_config` ### Date - 13th Sept, 2024 **Attendees** : Aditi, Derek, Erik ### Topics - Type annotation - removing it from PR#80 for now and make an issue on it instead - Are we going to test them if we have them? - nx_cugraphs - https://github.com/scientific-python/docstub - Type annotation : sklearn doesn’t use it - Too early to tell if we should include Map-Reduce in nx-parallel but we could have a general infrastructure to simplify things - Heatmaps makes sense - Avg to reduce noise? - plotting and timing in pytest-benchmarks? - Interactive plot (dash) - https://dash.plotly.com/interactive-graphing - Algo drop-down - Live plot - function of vertices, edge probability is a config? - https://docs.rapids.ai/api/cugraph/stable/nx_cugraph/nx_cugraph/ - https://github.com/python-graphblas/graphblas-algorithms - Config - should we sync the two configs i.e. networkx's and joblib's? - Speeding up generator functions - removing nested for loop might help! - adding graph conversion and chunking logic in a decorator; include in the config decorator only? ## Notes related to nx-parallel (from the last NetworkX comm. meeting) ### Date - 4th Sept, 2024 ### Topics: - TODO : Add a parallel implementations for finding all cycles in a graph in nx-parallel([@Nikoleta-v3](https://github.com/Nikoleta-v3) requires this) - TODO : Better testing of configs and chunking in nx-parallel - Having a map-reduce arch. in nx-parallel? My(Aditi) main concerns - might not be very first-time contributor friendly; - and might not be able to fit future non-embarrassingly parallel graph algo’s implementations into this arch. - for reference - [PR#7](https://github.com/networkx/nx-parallel/pull/7), [Issue#30](https://github.com/networkx/nx-parallel/issues/30) - [Derek] Adding another types of parallelism in nx-parallel —> running same algorithm on multiple graphs or subgraphs within a graph in parallel - Why would someone not use joblib for this kind of thing but instead would want to use nx-parallel? - If those graphs have a common property so the parallelism would be done in a particular way. - Other topics: - benchmarking - https://github.com/networkx/nx-parallel/issues/12 - improving configs in nx-parallel? - https://github.com/networkx/nx-parallel/issues/76 - handling already fast algorithms - https://github.com/networkx/nx-parallel/issues/79, https://github.com/networkx/nx-parallel/issues/77 - showcasing speedups in a better way - https://github.com/networkx/nx-parallel/issues/51 (also memory usage and other CPU usage, processes related, threads related statistics, etc.) - TODO : Creating a website for nx-parallel (Aditi) - related to [PR#80](https://github.com/networkx/nx-parallel/pull/80) - Thoughts on having type annotations in nx-parallel? - Why is `GraphIteratorType` a class and not just a list? and should we have all types in a separate `types.py`? - Introducing lower-level parallelism in nx-parallel? -

    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