はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    ChatGPT

『matthewrocklin.com』

  • 人気
  • 新着
  • すべて
  • Streaming Dataframes

    27 users

    matthewrocklin.com

    This work is supported by Anaconda Inc and the Data Driven Discovery Initiative from the Moore Foundation This post is about experimental software. This is not ready for public use. All code examples and API in this post are subject to change without warning. Summary This post describes a prototype project to handle continuous data sources of tabular data using Pandas and Streamz. Introduction Som

    • テクノロジー
    • 2017/10/16 23:31
    • pandas
    • jupyter
    • python
    • stream
    • visualization
    • data
    • Dask and Pandas and XGBoost

      3 users

      matthewrocklin.com

      Dask and Pandas and XGBoost Playing nicely between distributed systems This work is supported by Continuum Analytics the XDATA Program and the Data Driven Discovery Initiative from the Moore Foundation Summary This post talks about distributing Pandas Dataframes with Dask and then handing them over to distributed XGBoost for training. More generally it discusses the value of launching multiple dis

      • テクノロジー
      • 2017/03/28 23:09
      • Distributed Pandas on a Cluster with Dask DataFrames

        3 users

        matthewrocklin.com

        This work is supported by Continuum Analytics the XDATA Program and the Data Driven Discovery Initiative from the Moore Foundation Summary Dask Dataframe extends the popular Pandas library to operate on big data-sets on a distributed cluster. We show its capabilities by running through common dataframe operations on a common dataset. We break up these computations into the following sections: Intr

        • テクノロジー
        • 2017/01/13 05:27
        • Dask and Celery

          3 users

          matthewrocklin.com

          This post compares two Python distributed task processing systems, Dask.distributed and Celery. Disclaimer: technical comparisons are hard to do well. I am biased towards Dask and ignorant of correct Celery practices. Please keep this in mind. Critical feedback by Celery experts is welcome. Celery is a distributed task queue built in Python and heavily used by the Python community for task-based w

          • テクノロジー
          • 2016/12/02 21:12
          • Distributed Dask Arrays

            4 users

            matthewrocklin.com

            This work is supported by Continuum Analytics and the XDATA Program as part of the Blaze Project In this post we analyze weather data across a cluster using NumPy in parallel with dask.array. We focus on the following: How to set up the distributed scheduler with a job scheduler like Sun GridEngine. How to load NetCDF data from a network file system (NFS) into distributed RAM How to manipulate dat

            • テクノロジー
            • 2016/02/26 23:30
            • Python Data Structures are Fast

              4 users

              matthewrocklin.com

              tl;dr: Our intuition that Python is slow is often incorrect. Data structure bound Python computations are fast. You may also want to see the companion post, Introducing CyToolz. We think that Python is slow Our intuition says that Python is slow: >>> # Python speeds >>> L = range(1000000) >>> timeit sum(L) timeit np.s100 loops, best of 3: 7.79 ms per loop >>> # C speeds >>> import numpy as np >>>

              • 世の中
              • 2014/05/02 08:29
              • python
              • performance
              • Python v. Clojure v. Julia

                3 users

                matthewrocklin.com

                Python v. Clojure v. Julia a contest of text and grouping! tl;dr: We compare Python performance against Clojure, Julia, and Java in text-processing and dynamic collections. Remarkably, Python does well. Note - this post embeds gists for code. These do not render well on Planet pages or on RSS readers like feedly. It may be better to view on the original site Situation I mostly understand numeric p

                • 学び
                • 2014/01/15 18:52
                • Julia
                • Clojure
                • Python
                • Introducing PyToolz

                  4 users

                  matthewrocklin.com

                  The PyToolz project extends itertools and functools to provide a set of standard functions for iterators, functions, and dictionaries. tl;dr – PyToolz provides good functions for core data structures. These functions work together well. Here is a partial API: groupby, unique, isiterable, intersection, frequencies, get, concat, isdistinct, interleave, accumulate first, second, nth, take, drop, rest

                  • 暮らし
                  • 2013/10/18 23:51
                  • SymPy -> Theano -- Code Generation

                    4 users

                    matthewrocklin.com

                    No one is good at everything, that’s why we have society. No project is good at everything, that’s why we have interfaces. This is the first of three posts that join SymPy, a library for symbolic mathematics, and Theano, a library for mathematical compilation to numeric code. Each library does a few things really well. Each library also over-reaches bit and does a few things not-as-well. Fortunate

                    • 学び
                    • 2013/03/20 14:08
                    • Theano
                    • SymPy
                    • 機械学習
                    • python

                    このページはまだ
                    ブックマークされていません

                    このページを最初にブックマークしてみませんか?

                    『matthewrocklin.com』の新着エントリーを見る

                    キーボードショートカット一覧

                    j次のブックマーク

                    k前のブックマーク

                    lあとで読む

                    eコメント一覧を開く

                    oページを開く

                    はてなブックマーク

                    • 総合
                    • 一般
                    • 世の中
                    • 政治と経済
                    • 暮らし
                    • 学び
                    • テクノロジー
                    • エンタメ
                    • アニメとゲーム
                    • おもしろ
                    • アプリ・拡張機能
                    • 開発ブログ
                    • ヘルプ
                    • お問い合わせ
                    • ガイドライン
                    • 利用規約
                    • プライバシーポリシー
                    • 利用者情報の外部送信について
                    • ガイドライン
                    • 利用規約
                    • プライバシーポリシー
                    • 利用者情報の外部送信について

                    公式Twitter

                    • 公式アカウント
                    • ホットエントリー

                    はてなのサービス

                    • はてなブログ
                    • はてなブログPro
                    • 人力検索はてな
                    • はてなブログ タグ
                    • はてなニュース
                    • ソレドコ
                    • App Storeからダウンロード
                    • Google Playで手に入れよう
                    Copyright © 2005-2025 Hatena. All Rights Reserved.
                    設定を変更しましたx