タグ

2021年1月6日のブックマーク (3件)

  • DALL·E: Creating images from text

    We’ve trained a neural network called DALL·E that creates images from text captions for a wide range of concepts expressible in natural language. DALL·E is a 12-billion parameter version of GPT-3 trained to generate images from text descriptions, using a dataset of text–image pairs. We’ve found that it has a diverse set of capabilities, including creating anthropomorphized versions of animals and

    DALL·E: Creating images from text
    xiangze
    xiangze 2021/01/06
  • JupyterLab 3.0 is released!

    The 3.0 release of JupyterLab brings many new features to users and substantial improvements to the extension system. InstallationTo install JupyterLab with pip: pip install jupyterlab==3With mamba: mamba install -c conda-forge jupyterlab=3With conda: conda install -c conda-forge jupyterlab=3(Note that many third-party extensions are still in the process of updating to be compatible with JupyterLa

    JupyterLab 3.0 is released!
    xiangze
    xiangze 2021/01/06
  • Juliaで精度保証付き数値計算

    Juliaを使って、精度保証付き数値計算の方法を紹介します。精度保証付き数値計算は「敷居が高い」と言われ続けていますが、その敷居をみんなが跨げるようにするのが稿の目的です。Juliaは近年飛ぶ鳥を落とす勢いの計算機言語で、区間演算が実装されているIntervalArithmetic.jlというパッケージがあります。これを利用して、精度保証付き数値計算を実装した例を紹介します。精度保証付き数値計算ってこうやるんだと身近に感じてもらい、今後使ってもらったら嬉しいです。 注意 区間演算の実装であるIntervalArithmetic.jlの実装にまだ不安があり、精度保証付き数値計算で論文を書くときは、MATLABのINTLABやC++のkvライブラリを利用することを推奨します。今はまだ、こうやって実装するのかと気軽に精度保証付き数値計算を体感してもらうためのコンテンツです。今後、区間演算の実装