Translation of "partitioning" to Japanese language:
Examples (External sources, not reviewed)
| I'm partitioning a partitioned unit. | これが数学とどう関係するのでしょう |
| This is called fuel partitioning in the lingo. | インスリンが不足すると 生活に支障が出ます |
| Spectral partitioning, L1 minimization. This comes from the optimization community. | これらは機械学習にも応用されています |
| It's sort of cool that Top K via partitioning as just described works. | ソートされていないTop kを見つけられます |
| The time it takes to run Top K via partitioning on one element. | 一方n個の要素の実行に必要な時間を |
| It's kind of a partially sorted list, and we call this partitioning around V. | 皆さんにやってもらうのはPythonコードを修正し |
| So, lets imagine there is some problem called graph partitioning which is a real problem. | ソーシャルネットワークに関係します |
| Now, the partitioning algorithm is going to split this list L into a left and a right. | 場合によって左か右のどちらかに再帰します |
| Do we know that graph partitioning is in NP, and therefore an exponential time solution would exist? | SATに還元できる? |
| Let's go over now how we can actually solve the top K problem using this idea of partitioning. | ここにリストLと任意の数字kがあります |
| When we observe the world, what we're doing is we're taking the current belief state and partitioning it up into pieces. | いくつかに分割することができます 観測によって信念状態に含まれない 新たな状態が現れることはありません |
| Right. Let's do an analysis of the time it takes for a Top K to do its work via this partitioning approach. | 再帰的アルゴリズムなので漸化式から見ていきます |
| This is very similar to the K partitioning algorithm from the lectures, but returns a single value only, instead of a list. | リストではなく1個のノードに返すのが特徴です 2つのリストを結合し 最後にif文で見つけた値を返します |
| There's our value v, and now, we're going to run the partitioning algorithm on this, and there is a couple of different cases that can happen. | いくつかのケースが考えられます まず最も簡単なケースIIから見ていきましょう |
| It doesn't solve the TopK problem better than the randomized algorithm we talked about the partitioning algorithm but it does it pretty fast and there's other uses for this. | 乱択化アルゴリズムや分割アルゴリズムを 使う方がいいのですが この方法もかなり速く他にも用途があります それは次のレッスンで見ていきます |
| We're going to start off remember we know how to do a partitioning is giving some v, well I don't know which value to use, so let's just pick one at random. | まず無作為に値を1つ選びます どの値にしましょうか これにしましょう |
| And these includ I mean leading approaches from, from our book where we have bottom up detectors, which try to find boundaries based on brightness, color, and texture differences, as well as some globalization through the use of normalized cups into the spectral partitioning technique. | ボトムアップ検出器を使って 輝度 色 テクスチャの境界を検出します それに加えて大域的最適化も用います それには正規化カットによるスペクトル手法を使っています |
| First, it does the partitioning operation, which runs through all the elements of the list that takes time n and then it's going to recurse assuming it hasn't gotten really lucky and since this is a less than or equal to let's assume it didn't get lucky. | 次に再帰的オペレーションになります アンラッキーな場合は小さいか同じかどちらかになり 右か左どちらかに再帰します |
| But now, we have a fourth approach, which uses this partitioning idea recursively to get an expected running time Î (n), which is better and the worst case than sorting and better than selection insertion for any k other than a constant n for constant they come up the same. | 予想される実行時間はΘ(n) ソートよりもいい場合と悪い場合があり kが定数nである場合を除き 選択と挿入のアルゴリズムよりもよくなります 定数の場合は全部同じです |
| Even if you don't know what it is, there are some things that you do know by the virtue of the fact that is is NP complete, assuming that you believe me, you'd know the following which of these, check all that apply, which of these do you know? if I tell you that graph partitioning is NP complete does that mean its | NP完全となる条件はお伝えしました どれが当てはまると思いますか? チェックを入れてください グラフ分割がNP完全ならNP困難となり |
| What happens when we run partitioning on that value v is it's going to separate all the values of L into the ones smaller than v, equal to v, and greater than v, and that happens to be position K, so the ones on the first K positioned here are exactly the top K for the list, the smallest K elements that we were looking for. | Lの値をvより小さい値 vと同じ値 vより大きい値に分けていきます それがたまたまk位置になります したがって最初のk位置の要素が 私たちが求めている値つまり |