Skip to content

Commit a44c635

Browse files
Update translations
1 parent daa8c18 commit a44c635

12 files changed

+41
-42
lines changed

docs/_locales/es-ES/ml_get_event_certainty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# certainty (%) ML
1+
# Confianza (%) ML
22

33
Obtiene el último valor de certeza de una acción ML.
44

docs/_locales/es-ES/ml_on_event_stop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# al detenerse el ML
22

3-
Inicia un [manejador de eventos](/reference/event-handler) (parte del programa que se ejecutará cuando algo suceda). Este controlador funciona cuando la acción estimada del modelo ML cambia respecto a la acción que seleccionaste.
3+
Inicia un [controlador de eventos](/reference/event-handler) (parte del programa que se ejecutará cuando algo suceda). Este controlador funciona cuando la acción estimada del modelo ML cambia respecto a la acción que seleccionaste.
44

55
```sig
66
ml.onStop(ml.event.Unknown, function () {

docs/_locales/ja/ml_get_event_certainty.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
1-
# certainty (%) ML
1+
# 確実性(%)メーリングリスト
22

3-
MLの動きの確実性の値を取得します
3+
ML の動きの確実性の値を取得します
44

55
```sig
66
ml.getCertainty(ml.event.Unknown)
77
```
88

9-
MLモデルは1秒間に数回実行され、各アクションの確実性の値を算出します。 推定した動きは、最も高い確実性を持つ動きです。 An action cannot be the estimated action when its certainty is below the recognition point. Some programs may need to use the certainty values directly, for example to display or log them. Most programs can use the estimated action instead of certainty values.
9+
ML モデルは 1 秒間に数回実行され、各アクションの確実性の値を算出します。 推定した動きは、最も高い確実性を持つ動きです。 アクションの確実性が認識点を下回る場合、そのアクションを推定アクションとすることはできない。 プログラムによっては、例えば確かな値を表示したりログに記録したりするために、その値を直接使う必要があるかもしれない。 ほとんどのプログラムでは、確実な値の代わりに推定アクションを使うことができる。
1010

1111
## パラメータ
1212

13-
- **event**: one of the actions the machine learning model was trained on.
13+
- **イベント**:機械学習モデルがトレーニングされたアクションの 1 つ。
1414

15-
## Returns
15+
## 戻る
1616

17-
- a percentage as a [number](/types/number) from 0 to 100, representing the ML model’s certainty that this is the action being performed. The certainty for `unknown` is always 0.
17+
- パーセンテージは 0 から 100 までの[数値](/types/number)で、ML モデルがこのアクションが実行されることを確信する度合いを表す。 「不明」の確実性は常に 0 である。
1818

1919
##
2020

21-
This example displays the ML model's certainty, in percent, that the current action is `clapping` every second.
21+
この例では、現在のアクションが 1 秒ごとに`拍手`しているという ML モデルの確信度をパーセントで表示しています。
2222

2323
```blocks
24-
loops.everyInterval(1000, function () {
25-
basic.showNumber(ml.getCertainty(ml.event.Clapping))
24+
loops.everyInterval(1000, function () {basic.showNumber(ml.getCertainty(ml.event.Clapping))
2625
})
2726
```
2827

docs/_locales/ja/ml_is_event_detected.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
# is ML detected
1+
# ML によって検知されました
22

3-
Checks if an ML action is the estimated action.
3+
ML のアクションが推定されたアクションかどうかをチェックする。
44

55
```sig
66
ml.isDetected(ml.event.Unknown)
77
```
88

9-
The ML model updates its estimated action several times a second. This function returns `true` if the chosen action is currently estimated. Use the boolean value to make logical decisions in your program.
9+
ML モデルは 1 秒間に数回、推定された行動を更新する。 この関数は、選択されたアクションが現在推定されている場合、「真」を返す。 ブーリアン値を使って、プログラムで論理的な判断を下す。
1010

11-
Some programs will be easier to write using the “on ML start” and “on ML stop” event handlers instead.
11+
いくつかのプログラムは、「ML で開始」 と 「ML で停止」 イベント取扱機能を使った方が書きやすいでしょう。
1212

1313
## パラメータ
1414

15-
- **event**: one of the actions the machine learning model was trained on. The special value `unknown` represents the case where no action has a certainty above the recognition point.
15+
- **イベント**:機械学習モデルがトレーニングされたアクションの 1 つ。 特別な値「不明」は、認識点以上の確実性を持つアクションがない場合を表す。
1616

17-
## Returns
17+
## 戻る
1818

19-
- a [boolean](/types/boolean) value that is `true` if the ML action is the estimated action, `false` if the ML action is not the estimated action.
19+
- [ブーリアン](/型/ブーリアン)値で、ML アクションが推定されたアクションであれば 「真」、推定されたアクションでなければ 「偽」となります。
2020

2121
##
2222

23-
This example will show a tick icon on the LED display if the estimated action is `clapping` at the time the conditional statement is checked.
23+
この例では、条件文がチェックされた時点で、推定されるアクションが`clapping`であれば、LED ディスプレイにティックアイコンを表示する。
2424

2525
```blocks
2626
basic.forever(function () {

docs/_locales/ja/ml_on_event_start.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# MLが開始したとき
1+
# ML が開始したとき
22

3-
Start an [event handler](/reference/event-handler) (part of the program that will run when something happens). This handler works when the ML model’s estimated action changes to the action you select.
3+
[イベント管理](/参照/イベント管理)(何かが起こったときに実行されるプログラムの一部)を開始する。 このハンドラは、ML モデルの推定アクションが、あなたが選択したアクションに変更されたときに動作します。
44

55
```sig
66
ml.onStart(ml.event.Unknown, function () {
77
})
88
```
99

10-
The ML model updates its estimated action several times a second, but this event handler only runs when the estimated action changes.
10+
ML モデルは 1 秒間に数回推定行動を更新するが、このイベント処理機能は推定行動が変化したときだけ実行される。
1111

1212
## パラメータ
1313

14-
- **event**: one of the actions the machine learning model was trained on. The special value `unknown` represents the case where no action has a certainty above the recognition point.
14+
- **イベント**:機械学習モデルがトレーニングされたアクションの 1 つ。 特別な値「不明」は、認識点以上の確実性を持つアクションがない場合を表す。
1515

1616
##
1717

18-
This example plays a musical melody in the background when the action `clapping` has a certainty above the recognition point.
18+
この例では、「拍手」というアクションが認識点以上の確度を持っているとき、バックグランドで音楽のメロディーを再生する。
1919

2020
```blocks
2121
ml.onStart(ml.event.Clapping, function () {

docs/_locales/ja/ml_on_event_stop.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# on ML stop
1+
# ML 上で停止
22

3-
Start an [event handler](/reference/event-handler) (part of the program that will run when something happens). This handler works when the ML model’s estimated action changes from the action you select.
3+
[イベント管理](/参照/イベント管理)(何かが起こったときに実行されるプログラムの一部)を開始する。 このハンドラは、ML モデルの推定アクションが、あなたが選択したアクションから変更されたときに動作します。
44

55
```sig
66
ml.onStop(ml.event.Unknown, function () {
77
})
88
```
99

10-
When an action changes, the stop event handler for the previous action will run, followed by the start event handler for the next action.
10+
アクションが変更されると、前のアクションのイベント停止処理が実行され、続いて次のアクションに向けたイベント開始処理が実行される。
1111

12-
For example, if your start event handler for an action starts music playing in the background, you could use a stop event handler to stop it.
12+
例えば、あるアクションのイベント開始処理がバックグラウンドで音楽再生を開始した場合、イベント停止処理を使って停止させることができる。
1313

1414
## パラメータ
1515

16-
- **event**: one of the actions the machine learning model was trained on. The special value `unknown` represents the case where no action has a certainty above the recognition point.
16+
- **イベント**:機械学習モデルがトレーニングされたアクションの 1 つ。 特別な値「不明」は、認識点以上の確実性を持つアクションがない場合を表す。
1717

1818
##
1919

20-
This example stops playing a musical melody when the estimated action changes from `clapping` to any other action.
20+
この例では、推定されるアクションが「拍手」から他のアクションに変わったときに、音楽のメロディーの再生を止める。
2121

2222
```blocks
2323
ml.onStop(ml.event.Clapping, function () {

docs/_locales/ja/ml_on_event_stop_detailed.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
# on ML stop
1+
# ML 上で停止
22

3-
Start an [event handler](/reference/event-handler) (part of the program that will run when something happens). This handler works when the ML model’s estimated action changes from the action you select.
3+
[イベント管理](/参照/イベント管理)(何かが起こったときに実行されるプログラムの一部)を開始する。 このハンドラは、ML モデルの推定アクションが、あなたが選択したアクションから変更されたときに動作します。
44

55
```sig
66
ml.onStopDetailed(ml.event.Unknown, function (duration) {
77
})
88
```
99

10-
When an action changes, the stop event handler for the previous action will run, followed by the start event handler for the next action.
10+
アクションが変更されると、前のアクションのイベント停止処理が実行され、続いて次のアクションに向けたイベント開始処理が実行される。
1111

12-
For example, if your start event handler for an action starts music playing in the background, you could use a stop event handler to stop it.
12+
例えば、あるアクションの開始イベントハンドラがバックグラウンドで音楽再生を開始した場合、停止イベントハンドラを使って停止させることができる。
1313

14-
The event handler is passed a `duration` parameter. The duration is the [number](/types/number) of milliseconds since this action became the estimated action. You can use the duration parameter in your code, for example displaying it or using a variable to keep a running total.
14+
イベントハンドラには「持続時間」パラメータが渡される。 持続時間は、このアクションが推定アクションになってからのミリ秒の[数値](/型/数値)である。 例えば、duration パラメータを表示したり、実行中の合計を保持するために変数を使用するなど、コード内で使用することができます。
1515

1616
## パラメータ
1717

18-
- **event**: one of the actions the machine learning model was trained on. The special value `unknown` represents the case where no action has a certainty above the recognition point.
18+
- **イベント**:機械学習モデルがトレーニングされたアクションの 1 つ。 特別な値「不明」は、認識点以上の確実性を持つアクションがない場合を表す。
1919

2020
##
2121

22-
This example shows on the LED display, in seconds, how long the estimated action was `clapping`, when the estimated action changes from `clapping` to any other action.
22+
この例では、推定動作が`拍手`から他の動作に変わったときに、推定動作が「拍手」していた時間を秒単位で LED ディスプレイに表示します。
2323

2424
```blocks
2525
ml.onStopDetailed(ml.event.Clapping, function (duration) {

docs/_locales/nl/ml_get_event_certainty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# certainty (%) ML
1+
# zekerheid (%) ML
22

33
Haalt de laatste zekerheidswaarde op voor een ML actie.
44

docs/_locales/nl/ml_on_event_stop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# op ML stop
1+
# op ML stop
22

33
Start een [event handler](/reference/event-handler) (deel van het programma dat wordt uitgevoerd wanneer er iets gebeurt). Deze handler werkt wanneer de ingeschatte actie van het ML-model verandert in de actie die je selecteert.
44

docs/_locales/nl/ml_on_event_stop_detailed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# op ML stop
1+
# op ML stop
22

33
Start een [event handler](/reference/event-handler) (deel van het programma dat wordt uitgevoerd wanneer er iets gebeurt). Deze handler werkt wanneer de ingeschatte actie van het ML-model verandert in de actie die je selecteert.
44

0 commit comments

Comments
 (0)