並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 52件

新着順 人気順

explainの検索結果1 - 40 件 / 52件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

explainに関するエントリは52件あります。 performancemysqlDB などが関連タグです。 人気エントリには 『マイクロソフト、ソースコードをAIが読み込んで自然言語で説明してくれる「Copilot Explain」を開発中。GitHub Copilotは今夏に正式サービスへ。Microsoft Build 2022』などがあります。
  • マイクロソフト、ソースコードをAIが読み込んで自然言語で説明してくれる「Copilot Explain」を開発中。GitHub Copilotは今夏に正式サービスへ。Microsoft Build 2022

    マイクロソフト、ソースコードをAIが読み込んで自然言語で説明してくれる「Copilot Explain」を開発中。GitHub Copilotは今夏に正式サービスへ。Microsoft Build 2022 マイクロソフトは現在開催中の開発者向けイベント「Microsoft Build 2022」で、ソースコードの内容をAIが自然言語で説明してくれる「Copilot Explain」の開発を進めていることを明らかにしました。 AIが説明してくれることで、そのソースコードについてまだ詳しい内容を把握していないプログラマによるコードの修正やデバッグ作業などの効率化がはかれるとしています。 AIが自然言語の説明とコードの関係を学習 GitHub Copilotでは、人間のプログラマがペアプログラミングの相手であるAIに対してこれから書こうとしているコードの意図を説明するために、まずコメントを記述

      マイクロソフト、ソースコードをAIが読み込んで自然言語で説明してくれる「Copilot Explain」を開発中。GitHub Copilotは今夏に正式サービスへ。Microsoft Build 2022
    • GitHub - ByteByteGoHq/system-design-101: Explain complex systems using visuals and simple terms. Help you prepare for system design interviews.

      Architecture styles define how different components of an application programming interface (API) interact with one another. As a result, they ensure efficiency, reliability, and ease of integration with other systems by providing a standard approach to designing and building APIs. Here are the most used styles: SOAP: Mature, comprehensive, XML-based Best for enterprise applications RESTful: Popul

        GitHub - ByteByteGoHq/system-design-101: Explain complex systems using visuals and simple terms. Help you prepare for system design interviews.
      • オレ的EXPLAIN技を語っちゃうゾ - Qiita

        メリークリスマス 本記事はPostgreSQL Advent Calendar 2021の25日目です。今年も面白い記事がたくさん揃いましたね!!! さて、みなさん今年のPostgreSQLライフはどんな感じでしたでしょうか? 私はというと、なんだかチューニングばっかりやってました。1案件でいろいろお手伝いすることはまあまああったのですが、複数から次々チューニングの相談をもらって、歴代継承者の個性を発現したデクくんのごとく駆け回ったのが今年のハイライトです。 (この綱渡り感、、、伝われ!!!) 俺たちは雰囲気でチューニングしている 今回上手くいったけど、あの時たまたまひらめいた1案をぶつけてみたら効果でたのであって、次善の策なんてなかったけど??って毎回思ってるから、雰囲気でやっていると思う、マジで。コミュニティのノリだと笑いが起きていいんですけど、少しでも勝率を上げるために、若手の前でド

          オレ的EXPLAIN技を語っちゃうゾ - Qiita
        • MySQL で複合インデックスを作成する際には必ず Explain の key_len を確認すべきという話

          「Rails Developers Meetup 2018 で「MySQL/InnoDB の裏側」を発表しました」でちゃんと触れられてないので今更ながら key_len について補足します。発表で触れた内容については言及しないので、storage engine や B+ tree といった用語がよくわからない方は発表内容を参照してください。 なお、MySQL のバージョンは 5.7.38 です。 mysql> SELECT @@version; +-----------+ | @@version | +-----------+ | 5.7.38 | +-----------+ 1 row in set (0.00 sec) 事前準備 sample-data-railsdm-2018 の orders テーブルを少しいじって、キャンセル時刻(canceled_at)、配送予定時刻(deliv

            MySQL で複合インデックスを作成する際には必ず Explain の key_len を確認すべきという話
          • MySQL のインデックスと EXPLAIN の社内講習会しました!|技術ブログ|北海道札幌市・宮城県仙台市のVR・ゲーム・システム開発 インフィニットループ

            MySQL のインデックスと EXPLAIN の社内講習会しました! みなさんMySQL使っていますか? インフラエンジニアの nobuh こと波多野です。 弊社はサーバー開発に携わることが多く、サーバー開発の言語としては PHP をはじめ C# などいろいろな言語を使っています。そのサーバーと合わせて必須となるデータベースについては MySQL ないし AWS RDS Aurora など MySQL 互換データベースを含め、ほぼ 100% MySQL を使っています。 そして、どんなサービスやプロダクトでもデータを管理し提供するデータベースは、性能でも重要な部分になります。 今回そんな MySQL の性能で重要となるインデックスについて、またクエリをチューニングする場合に必要となる EXPLAIN についての社内講習会を「新卒講義」の場を借りて実施いたしました。その内容について紹介したい

              MySQL のインデックスと EXPLAIN の社内講習会しました!|技術ブログ|北海道札幌市・宮城県仙台市のVR・ゲーム・システム開発 インフィニットループ
            • MySQLのEXPLAINが直感とは異なっていた事例 - 私が歌川です

              おもしろかったのでメモ。 CREATE TABLE `tbl` ( `id` BIGINT UNSIGNED NOT NULL, `done` BOOLEAN NOT NULL DEFAULT FALSE, PRIMARY KEY (`id`), KEY `done_and_id` (`done`, `id`) ); tbl テーブルに done = FALSE で100万行INSERTしておく SELECT id FROM tbl WHERE done = FALSE ORDER BY id ASC LIMIT 50 でidを順に集める 処理する UPDATE tbl SET done = TRUE WHERE id IN (...) で処理済にする これを done = FALSE な行がなくなるまで繰り返す KEY `done_and_id (`done`, `id`) ありでEXP

                MySQLのEXPLAINが直感とは異なっていた事例 - 私が歌川です
              • AIの仕組みや開発手法についてイラスト付きで分かりやすく解説するAmazonの無料教材「MLU-Explain」

                AIの研究開発は急速に進んでおり、「そろそろAIについて勉強しないとな」と考えている人も多いはず。Amazonが無料公開している教材「MLU-Explain」ではニューラルネットワークの基礎が分かりやすいイラストやアニメーション付きで解説されています。 MLU-Explain https://mlu-explain.github.io/ MLU-Explainは機械学習の重要な概念をイメージ画像やアニメーションを使って分かりやすく解説する教材で、「ニューラルネットワークの基礎」「機械学習モデルからバイアスを取り除く方法」「ロジスティクス回帰の基礎」「線形回帰の基礎」などを学べます。 例えば、ニューラルネットワークの解説ページは「ニューラルネットワークは、『ニューロン』と呼ばれる相互接続された計算ノードが層状に積み重なって構成されるネットワークである」という基本的な概念の説明で始まり、ニュー

                  AIの仕組みや開発手法についてイラスト付きで分かりやすく解説するAmazonの無料教材「MLU-Explain」
                • SpringOnion: Railsの遅そうなEXPLAINをログ出力するgem - so what

                  SpringOnionというRailsの遅そうなEXPLAINをログ出力するgemを作りました。 github.com 某kamopoさんのMySQLCasualLog.pmの移植?です。 cf. ふつうのWeb開発者のためのクエリチューニング 以前の移植とは異なって、Arproxyを必要とせず、単体で動きます。 何年前の話だよといわれそうですが、未だにスロークエリと戦っていたりするので… Rails 3以前に搭載されていた、遅かったクエリを自動的にEXPLAINする機能とは異なり、フィルタで選別されたすべてのクエリに対してEXPLAINを実行し、まずそうなキーワードが出現したらログに出力します。 また、EXPLAINの実行先は開発用のDBだけでなく任意のDBに向けられます(例: ステージング環境のDBなど)。 使い方 GemfileにSpringOnionを追加して group :dev

                    SpringOnion: Railsの遅そうなEXPLAINをログ出力するgem - so what
                  • 15分でわかった気になるVite / Explain Vite in 15 minutes

                    慶島亜門(LINE Growth Technology UIT1チーム) UIT Meetup vol. 13 『知っておきたいFront-end Toolingの今』 での登壇資料です https://uit.connpass.com/event/216043/

                      15分でわかった気になるVite / Explain Vite in 15 minutes
                    • Language models can explain neurons in language models

                      We use GPT-4 to automatically write explanations for the behavior of neurons in large language models and to score those explanations. We release a dataset of these (imperfect) explanations and scores for every neuron in GPT-2. Language models have become more capable and more broadly deployed, but our understanding of how they work internally is still very limited. For example, it might be diffic

                        Language models can explain neurons in language models
                      • MLU-Explain

                        MLU-EXPLAIN Visual explanations of core machine learning concepts Machine Learning University (MLU) is an education initiative from Amazon designed to teach machine learning theory and practical application. As part of that goal, MLU-Explain exists to teach important machine learning concepts through visual essays in a fun, informative, and accessible manner. Neural Networks Learn about neural net

                          MLU-Explain
                        • Heroku forces user password resets but fails to explain why

                          Salesforce-owned Heroku is performing a forced password reset on a subset of user accounts in response to last month's security incident while providing no information as to why they are doing so other than vaguely mentioning it is to further secure accounts. Last night, some Heroku users began receiving emails titled 'Heroku security notification - resetting user account passwords on May 4, 2022'

                            Heroku forces user password resets but fails to explain why
                          • GitHub - dalibo/pev2: Postgres Explain Visualizer 2

                            You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                              GitHub - dalibo/pev2: Postgres Explain Visualizer 2
                            • Glossary + Explain Like I'm Five · reactwg/react-18 · Discussion #46

                              tl;dr This thread contains plain English and explain-like-I'm-five definitions of the terms and concepts used throughout other discussions. Scroll to comments to find (or add) a term and explanations connected to it ✨ First of all, thank you for amazing discussions and articles shared here so far. It has been an amazing reading adventure 💕 As has been pointed out in another thread, complicated te

                                Glossary + Explain Like I'm Five · reactwg/react-18 · Discussion #46
                              • GitHub - Quramy/eslint-plugin-tutorial: A tutorial/template repository to explain how to create your eslint plugins

                                You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

                                  GitHub - Quramy/eslint-plugin-tutorial: A tutorial/template repository to explain how to create your eslint plugins
                                • Happy New Year: GPT in 500 lines of SQL - EXPLAIN EXTENDED

                                  Translations: Russian This year, the talk of the town was AI and how it can do everything for you. I like it when someone or something does everything for me. To this end, I decided to ask ChatGPT to write my New Year's post: "Hey ChatGPT. Can you implement a large language model in SQL?" "No, SQL is not suitable for implementing large language models. SQL is a language for managing and querying d

                                    Happy New Year: GPT in 500 lines of SQL - EXPLAIN EXTENDED
                                  • 慣れた人間は空のテーブルを相手にEXPLAINの結果を予測できるのか

                                    「は〜、今日も仕事つかれたなー」と思いながらTwitterを眺めていたらこんなツイートが流れてきました。 空のテーブルを相手にEXPLAINの結果を予測できるか 答えからいうと、「できる」になります。 それも、まーまー大きく外さない精度で予測できるかな、というのが自分の感覚です。 ですが、この感覚が理解できないという人もいるかと思うので、どのような思考順で予測をしているのかを解説してみたいと思います。 サンプルのデータ構造とSQL ひとまずめちゃくちゃ単純なデータ構造で考えてみます。 このようなテーブルに対し、以下のSQLを投げるとします。 SELECT e.id, e.name, e.department_id, d.name FROM employee e INNER JOIN department d ON e.department_id = d.id WHERE d.id = 10

                                      慣れた人間は空のテーブルを相手にEXPLAINの結果を予測できるのか
                                    • PostgreSQL 16からプリペアド文の汎用的な実行計画を確認できるようになりました EXPLAIN (GENERIC_PLAN) | DevelopersIO

                                      PostgreSQL 16からプリペアド文の汎用的な実行計画を確認できるようになりました EXPLAIN (GENERIC_PLAN) PostgreSQL 16からプリペアド文の汎用実行計画を EXPLAIN (GENERIC_PLAN) で確認できるようになりました(3c05284d83)。 この機能をご紹介します。 test=> select version(); version ------------------------------------------------------------------------------------------------------------ PostgreSQL 16beta1 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 7.3.1 20180712 (Red Hat 7.3.1-1

                                        PostgreSQL 16からプリペアド文の汎用的な実行計画を確認できるようになりました EXPLAIN (GENERIC_PLAN) | DevelopersIO
                                      • MySQL実行計画(EXPLAIN)の見方

                                        MySQL EXPLAINとは EXPLAINとは、MySQLがどのような実行計画でクエリ実行するかを表示するコマンド。EXPLAINの結果を見ることで効率の悪いクエリを見つけたり、改善結果を確認できる。 EXPLAIN ( SELECT f.film_id, f.title, f.release_year, a.first_name, a.last_name FROM film f INNER JOIN film_actor fa ON fa.film_id = f.film_id INNER JOIN actor a ON a.actor_id = fa.actor_id ); JOIN時のEXPLAINの見方 JOINする場合は、駆動表が一番最初に表示される。 先程の例だと、actorテーブルが駆動表になっているということになる。 駆動表を固定したい場合は、MySQL 8.0からはJ

                                          MySQL実行計画(EXPLAIN)の見方
                                        • MySQL8.0.18新機能「EXPLAIN ANALYZE」で外部結合の実行計画が取れなかった件 - なからなLife

                                          祝:8.0.18リリース! 今回のメンテナンスリリースは盛りだくさんです。詳細は、リリースノートを読んでいただくか、今度の9/21(月)に更新されるであろうMySQL Weeklyを確認してください。 リリース前から話題沸騰だったのは、「NestedLooop一本勝負っだったMySQLにもとうとうHashJoinがやってきた!」って話ですが、ほかにもたくさん機能がでています。 そんな新機能の中には、PostgreSQLのEXPLAINのパクリリスペクトな出力が魅力の「EXPLAIN ANALYZE」も含まれてます。 で、記念にさっそく叩いてみたら、表題のような結果になりまして。 以下、実験の記録です。 環境 VirtualBoxにCentOS7をMinimalで入れてyum updateしてfirewalldとSELinux止めてmysqlのyum.repoファイル仕込んでyumからmys

                                            MySQL8.0.18新機能「EXPLAIN ANALYZE」で外部結合の実行計画が取れなかった件 - なからなLife
                                          • How to interpret PostgreSQL EXPLAIN ANALYZE output

                                            UPDATED July 2023: EXPLAIN ANALYZE is the key to optimizing SQL statements in PostgreSQL. This article does not attempt to explain everything there is to it. Rather, I want to give you a brief introduction, explain what to look for and show you some helpful tools to visualize the output. Also, I want to call your attention to a new patch I wrote which has been included in PostgreSQL 16, EXPLAIN GE

                                              How to interpret PostgreSQL EXPLAIN ANALYZE output
                                            • GitHub - mgartner/pg_flame: A flamegraph generator for Postgres EXPLAIN ANALYZE output.

                                              A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

                                                GitHub - mgartner/pg_flame: A flamegraph generator for Postgres EXPLAIN ANALYZE output.
                                              • MongoDB v4 explain 結果をちゃんと理解してクエリ改善 (前半:explain結果の見方) - Qiita

                                                @koshi_life です。 MongoDBのクエリ高速化に興味があり、Explain Results を理解したく調べたことの備忘です。 前提 MongoDB v4.0.3 シャードなし 参考リンクは2019年4月末時点のものを参考にしています。 事前に確認したもの mongoDB - Indexes クエリ改善するに当たり、MongoDBのインデックス概要ページは必読。 とても読みやすい 日本語訳 もQiitaにありました。 テストデータ Qiitaサービスインの2011年〜2019年4月のある断面までの全記事 396,416件 をv2 APIで取得しました。以下が保存した 1docの中身です。 { "_id": ObjectID("5cbb36d11fc6a6c823466a06"), "item_id": "634799bb57872ce0a169", "user_id": "k

                                                  MongoDB v4 explain 結果をちゃんと理解してクエリ改善 (前半:explain結果の見方) - Qiita
                                                • Trent Telenko on Twitter: "This is a thread that will explain the implied poor Russian Army truck maintenance practices based on this photo of… https://t.co/cvkhsSzMd2"

                                                  This is a thread that will explain the implied poor Russian Army truck maintenance practices based on this photo of… https://t.co/cvkhsSzMd2

                                                    Trent Telenko on Twitter: "This is a thread that will explain the implied poor Russian Army truck maintenance practices based on this photo of… https://t.co/cvkhsSzMd2"
                                                  • Linus Torvalds' Advice On Git Merges: "If you cannot explain a merge, then JUST DON'T DO IT" - Phoronix

                                                    Show Your Support: This site is primarily supported by advertisements. Ads are what have allowed this site to be maintained on a daily basis for the past 19+ years. We do our best to ensure only clean, relevant ads are shown, when any nasty ads are detected, we work to remove them ASAP. If you would like to view the site without ads while still supporting our work, please consider our ad-free Phor

                                                      Linus Torvalds' Advice On Git Merges: "If you cannot explain a merge, then JUST DON'T DO IT" - Phoronix
                                                    • MySQLのEXPLAIN(実行プラン)まとめ - Qiita

                                                      MySQLのEXPLAIN(実行プラン)について、まとめます。 EXPLAINは、クエリがどのように実行されるかを確認できます。 例えば、昨日まで1sだったクエリが、今日は10sかかる。という経験はないでしょうか。 EXPLAINを確認すると、意図しないIndexが使われいて、遅くなっていた。ということがあります。 はじめに MySQL 5.6.3以降では、EXPLAIN に使用できる説明可能なステートメントは、SELECT、DELETE、INSERT、REPLACE、UPDATE です。MySQL 5.6.3より前では、SELECT が唯一の説明可能なステートメントです。 今回は、MySQLのバージョンは5.7で試します。 EXPLAIN確認方法 クエリの先頭に EXPLAIN をつけて実行します。 +----+-------------+-------+------------+---

                                                        MySQLのEXPLAIN(実行プラン)まとめ - Qiita
                                                      • 'X Æ A-12 Musk': Grimes, Elon Musk explain the backstory of new baby boy's name

                                                        'X Æ A-12 Musk': Grimes, Elon Musk explain the backstory of new baby boy's name Congratulations are in order for Grimes and Elon Musk! The 32-year-old musical artist, whose real name is Claire Boucher, and her SpaceX and Tesla mastermind boyfriend welcomed their first child together on Monday, Musk tweeted. Musk, 48, shared a photo of himself holding the newborn in the hospital early Tuesday morni

                                                          'X Æ A-12 Musk': Grimes, Elon Musk explain the backstory of new baby boy's name
                                                        • MySQLのEXPLAIN ANALYZEの読み方を勉強したよ - Qiita

                                                          ミライトデザインアドベントカレンダー3日目です。 ミライトデザイン Advent Calendar 2021のカレンダー | Advent Calendar 2021 - Qiita 昨日は@tkek321さんのKeycloakでOIDC認可コードフローをやってみる記事でした。 OIDCを実際に動かしながら勉強できるので、凄く頭に入ってきやすい良記事でした! 本日は、MySQLに関して最近自分が勉強したことを記事にさせていただきます。 概要 MySQL 8.0.18からEXPLAIN ANALYZEが導入されました。 PostgreSQLでは昔からある機能ですが、MySQLに導入されたのはつい最近のことです。 この記事ではEXPLAIN ANALYZEの読み方について、自分が学んだ内容をご紹介できればと思います。 EXPLAIN ANALYZEってそもそも何? その前にEXPLAINって何

                                                            MySQLのEXPLAIN ANALYZEの読み方を勉強したよ - Qiita
                                                          • Mobility network models of COVID-19 explain inequities and inform reopening - Nature

                                                            In response to the COVID-19 crisis, stay-at-home orders were enacted in many countries to reduce contact between individuals and slow the spread of the SARS-CoV-29. Since then, public officials have continued to deliberate over when to reopen, which places are safe to return to and how much activity to allow10. Answering these questions requires epidemiological models that can capture the effects

                                                              Mobility network models of COVID-19 explain inequities and inform reopening - Nature
                                                            • Lack of testing doesn’t explain why Japan has so far escaped the worst of the coronavirus

                                                              It has been suggested quite widely that the relatively low number of known cases of COVID-19 in Japan is mainly due to the low number of tests for the disease that have been carried out. But looking more closely at the maths shows that this is almost certainly wrong. Japan has experienced a slow growth in the disease relative to other countries despite limited testing. Anyone paying attention to t

                                                                Lack of testing doesn’t explain why Japan has so far escaped the worst of the coronavirus
                                                              • Catastrophic solar storms may not explain shadows of radiation in trees

                                                                A cryptic chemical signature of unknown origins, hidden for centuries inside the trunks of Earth’s trees, just became even more mysterious. In the last decade, scientists have discovered traces on Earth of six intense bursts of radiation, known as Miyake events, scattered over the last 9,300 years. The most popular explanation is that these mysterious signatures were left behind by massive solar s

                                                                  Catastrophic solar storms may not explain shadows of radiation in trees
                                                                • evoBOT®– Inventors and developers explain the technology

                                                                  This video shows the latest generation of robots, the evoBOT®. The inventors and developers talk about the versatile applications of this robot. They explain how it is able to mimic human movements and adapt to different environments. They also unfold the technology behind it. The evoBOT® is a milestone in robotics and offers numerous advantages. For example, it can be used in industry to perform

                                                                    evoBOT®– Inventors and developers explain the technology
                                                                  • Explain the First 10 Lines of Twitter's Source Code to Me | CSS-Tricks

                                                                    For the past few weeks, I’ve been hiring for a senior full-stack JavaScript engineer at my rental furniture company, Pabio. Since we’re a remote team, we conduct our interviews on Zoom, and I’ve observed that some developers are not great at live-coding or whiteboard interviews, even if they’re good at the job. So, instead, we have an hour-long technical discussion where I ask them questions about

                                                                      Explain the First 10 Lines of Twitter's Source Code to Me | CSS-Tricks
                                                                    • GitHub - sicara/tf-explain: Interpretability Methods for tf.keras models with Tensorflow 2.x

                                                                      A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

                                                                        GitHub - sicara/tf-explain: Interpretability Methods for tf.keras models with Tensorflow 2.x
                                                                      • とても重いクエリがなぜ重いかを調べてみた(explain/optimizer_trace) | GMOメディア クリエイターブログ

                                                                        はじめましてこんにちは、2018年入社のエンジニアの羽中田といいます。現在は技術推進室という部署で、データ分析を行なっています。 GMOメディアのDBといえば何と言ってもMySQL、ということでMyS...

                                                                          とても重いクエリがなぜ重いかを調べてみた(explain/optimizer_trace) | GMOメディア クリエイターブログ
                                                                        • MySQL の EXPLAIN FOR SCHEMA について

                                                                          はじめに MySQLでSQLの実行計画を確認する際には、Explain文 の出力結果を確認するというのが王道です。 Explain文には、出力フォーマットをテーブル形式にしたり、JSON形式にしたりといった出力フォーマットを指定することができますが、その他にも Explainの取得方法を選択することもできます。 MySQL の Innovation リリースとして、バージョン 8.3.0 が先月リリースしましたが、今回は、一つ前の バージョン 8.2.0 で追加された EXPLAIN FOR SCHEMA について、従来の取得方法も簡単に紹介しながら、取り上げたいと思います。 バージョン 8.2.0 のリリースノートは以下となります。 Changes in MySQL 8.2.0 (2023-10-25, Innovation Release) EXPLAIN FOR CONNECTION

                                                                            MySQL の EXPLAIN FOR SCHEMA について
                                                                          • Language models can explain neurons in language models

                                                                            Steven Bills∗, Nick Cammarata∗, Dan Mossing∗, Henk Tillman∗, Leo Gao∗, Gabriel Goh, Ilya Sutskever, Jan Leike, Jeff Wu∗, William Saunders∗ Contributions Methodology: Nick effectively started the project by having the initial idea to have GPT-4 explain neurons, and showing a simple explanation methodology worked. William came up with the initial simulation and scoring methodology and implementation

                                                                            • MySQLのインデックス作成方法 効いてないと思ったらexplainで確認する | ポテパンスタイル

                                                                              MySQLのインデックスの使い方について、サンプルSQLを紹介しながらまとめています。 以下、データベースとして、MySQLのサンプルデータベースEmployeesを使っています。SQL実行結果の表示にはphpMyAdminを使用しています。 MySQLのインデックス作成の構文は以下のとおりです。 ALTER TABLE employees ADD INDEX `birth_date_index` (`birth_date`); 上記のSQLは、employees(社員)テーブルのbirth_date(誕生日)カラムにbirth_date_indexという名前でインデックスを設定します。 適切にインデックスを設定することによって、テーブルの検索やソートのスピードが速くなります。 SELECT first_name, last_name, birth_date FROM employees

                                                                                MySQLのインデックス作成方法 効いてないと思ったらexplainで確認する | ポテパンスタイル
                                                                              • Disentanglement Survey:Can You Explain How Much Are Generative models Disentangled?

                                                                                Disentanglement Survey:Can You Explain How Much Are Generative models Disentangled?

                                                                                  Disentanglement Survey:Can You Explain How Much Are Generative models Disentangled?
                                                                                • 2347: Dependency - explain xkcd

                                                                                  Title text: Someday ImageMagick will finally break for good and we'll have a long period of scrambling as we try to reassemble civilization from the rubble. Explanation[edit] Technology architecture is often illustrated by a stack diagram, in which higher levels of rectangles indicate components that are dependent on components in lower levels. This is analogous to a physical tower of blocks, in w

                                                                                  新着記事