About 2,080,000 results
Open links in new tab
  1. Dask Distributed - how to run one task per worker, making that task ...

    Dask workers maintain a single thread pool that they use to launch tasks. Each task always consumes one thread from this pool. You can not tell a task to take many threads from this pool. However, there …

  2. How do I read a large csv file with pandas? - Stack Overflow

    Apr 26, 2017 · Option 3: Dask Dask is a framework that is defined in Dask's website as: Dask provides advanced parallelism for analytics, enabling performance at scale for the tools you love It was born …

  3. dask - Make Pandas DataFrame apply () use all cores? - Stack Overflow

    As of August 2017, Pandas DataFame.apply() is unfortunately still limited to working with a single core, meaning that a multi-core machine will waste the majority of its compute-time when you run df.

  4. Dask: How would I parallelize my code with dask delayed?

    Mar 2, 2017 · This is my first venture into parallel processing and I have been looking into Dask but I am having trouble actually coding it. I have had a look at their examples and documentation and I think d...

  5. limit number of CPUs used by dask compute - Stack Overflow

    3 Below code uses appx 1 sec to execute on an 8-CPU system. How to manually configure number of CPUs used by dask.compute eg to 4 CPUs so the below code will use appx 2 sec to execute even …

  6. How to see progress of Dask compute task? - Stack Overflow

    I would like to see a progress bar on Jupyter notebook while I'm running a compute task using Dask, I'm counting all values of id column from a large csv file +4GB, so any ideas? import dask.datafr...

  7. python - Why does Dask perform so slower while multiprocessing …

    Sep 6, 2019 · 36 dask delayed 10.288054704666138s my cpu has 6 physical cores Question Why does Dask perform so slower while multiprocessing perform so much faster? Am I using Dask the wrong …

  8. How to transform Dask.DataFrame to pd.DataFrame?

    Aug 18, 2016 · How can I transform my resulting dask.DataFrame into pandas.DataFrame (let's say I am done with heavy lifting, and just want to apply sklearn to my aggregate result)?

  9. Writing Dask partitions into single file - Stack Overflow

    Sep 19, 2016 · 35 New to dask,I have a 1GB CSV file when I read it in dask dataframe it creates around 50 partitions after my changes in the file when I write, it creates as many files as partitions. Is there a …

  10. python - How to apply a function to a dask dataframe and return ...

    In pandas, I use the typical pattern below to apply a vectorized function to a df and return multiple values. This is really only necessary when the said function produces multiple independent outp...