Tutorial

engas99: GitHub daskdasktutorial Dask tutorial


Untung99 menawarkan beragam permainan yang menarik, termasuk slot online, poker, roulette, blackjack, dan taruhan olahraga langsung. Dengan koleksi permainan yang lengkap dan terus diperbarui, pemain memiliki banyak pilihan untuk menjaga kegembiraan mereka. Selain itu, Untung99 juga menyediakan bonus dan promosi menarik yang meningkatkan peluang kemenangan dan memberikan nilai tambah kepada pemain.

Berikut adalah artikel atau berita tentang Harian engas dengan judul engas99: GitHub daskdasktutorial Dask tutorial yang telah tayang di engas terimakasih telah menyimak. Bila ada masukan atau komplain mengenai artikel berikut silahkan hubungi email kami di koresponden@engas99.com, Terimakasih.

This tutorial was last given at SciPy 2022 in Austin Texas.
A video of the SciPy 2022 tutorial is available online.


Dask is a parallel and distributed computing library that scales the existing Python and PyData ecosystem. Dask can scale up to your full laptop capacity and out to a cloud cluster.

Prepare

1. You should clone this repository

git clone http://github.com/dask/dask-tutorial

and then install necessary packages.
There are three different ways to achieve this, pick the one that best suits you, and only pick one option.
They are, in order of preference:

2a) Create a conda environment (preferred)

In the main repo directory

conda env create -f binder/environment.yml
conda activate dask-tutorial

2b) Install into an existing environment

You will need the following core libraries

conda install -c conda-forge ipycytoscape jupyterlab python-graphviz matplotlib zarr xarray pooch pyarrow s3fs scipy dask distributed dask-labextension

Note that these options will alter your existing environment, potentially changing the versions of packages you already
have installed.

2c) Use Dockerfile

You can build a docker image from the provided Dockerfile.

$ docker build . # This will build using the same env as in a)

Run a container, replacing the ID with the output of the previous command

$ docker run -it -p 8888:8888 -p 8787:8787 

The above command will give an URL (Like http://(container_id or 127.0.0.1):8888/?token=) which
can be used to access the notebook from browser. You may need to replace the given hostname with “localhost” or
“127.0.0.1”.

You should follow only one of the options above!

Launch Jupyter

From the repo directory

This was already done for method c) and does not need repeating.

You are welcome to use Jupyter notebook if you prefer, but we’ll be using lab in the live tutorial.

Links

  • Reference
  • Ask for help
    • dask tag on Stack Overflow, for usage questions
    • github issues for bug reports and feature requests
    • discourse forum for general, non-bug, questions and discussion
    • Attend a live tutorial

Outline

  1. Overview – dask’s place in the universe.

  2. Dataframe – parallelized operations on many pandas dataframes spread across your cluster.

  3. Array – blocked numpy-like functionality with a collection of numpy arrays spread across your cluster.

  4. Delayed – the single-function way to parallelize general python code.

  5. Deployment/Distributed – Dask’s scheduler for clusters, with details of how to view the UI.

  6. Distributed Futures – non-blocking results that compute asynchronously.

  7. Conclusion