Skip to content

Commit a5585dc

Browse files
author
VSC-Service-Account
committed
CI Update
1 parent bae7b72 commit a5585dc

File tree

60 files changed

+3809
-1627
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+3809
-1627
lines changed

dotnet/xml/FrameworksIndex/ml-dotnet-preview.xml

Lines changed: 0 additions & 161 deletions
Large diffs are not rendered by default.

dotnet/xml/FrameworksIndex/ml-dotnet.xml

Lines changed: 234 additions & 0 deletions
Large diffs are not rendered by default.

dotnet/xml/Microsoft.ML.Data/DataKind.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,29 @@
1515
<summary>
1616
Specifies a simple data type.
1717
</summary>
18-
<remarks>To be added.</remarks>
18+
<remarks>
19+
<format type="text/markdown"><![CDATA[
20+
Some transforms use the default value and/or missing value of the data types.
21+
The table below shows the default value definition for each of the data types.
22+
23+
| Type | Default Value | IsDefault Indicator |
24+
| -- | -- | -- |
25+
| <xref:Microsoft.ML.Data.DataKind.String> or [text](xref:Microsoft.ML.Data.TextDataViewType) | Empty or `null` string (both result in empty `System.ReadOnlyMemory<char>` | <xref:"System.ReadOnlyMemory`1.IsEmpty*> |
26+
| [Key](xref:Microsoft.ML.Data.KeyDataViewType) type (supported by the unsigned integer types in `DataKind`) | Not defined | Always `false` |
27+
| All other types | Default value of the corresponding system type as defined by .NET standard. In C#, default value expression `default(T)` provides that value. | Equality test with the default value |
28+
29+
The table below shows the missing value definition for each of the data types.
30+
31+
| Type | Missing Value | IsMissing Indicator |
32+
| -- | -- | -- |
33+
| <xref:Microsoft.ML.Data.DataKind.String> or [text](xref:Microsoft.ML.Data.TextDataViewType) | Not defined | Always `false` |
34+
| [Key](xref:Microsoft.ML.Data.KeyDataViewType) type (supported by the unsigned integer types in `DataKind`) | `0` | Equality test with `0` |
35+
| <xref:Microsoft.ML.Data.DataKind.Single> | <xref:System.Single.NaN> | <xref:System.Single.IsNaN(System.Single)> |
36+
| <xref:Microsoft.ML.Data.DataKind.Double> | <xref:System.Double.NaN> | <xref:System.Double.IsNaN(System.Double)> |
37+
| All other types | Not defined | Always `false` |
38+
39+
]]></format>
40+
</remarks>
1941
</Docs>
2042
<Members>
2143
<Member MemberName="Boolean">

dotnet/xml/Microsoft.ML.Data/MulticlassClassificationMetrics.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,9 @@
172172
</summary>
173173
<value>To be added.</value>
174174
<remarks>
175-
The log-loss metric, is computed as follows:
176-
LL = - (1/m) * sum( log(p[i]))
177-
where m is the number of instances in the test set.
178-
p[i] is the probability returned by the classifier if the instance belongs to the class,
175+
The log-loss metric is computed as $-\frac{1}{m} \sum_{i=1}^m \log(p_i)$,
176+
where $m$ is the number of instances in the test set.
177+
$p_i$ is the probability returned by the classifier if the instance belongs to the class,
179178
and 1 minus the probability returned by the classifier if the instance does not belong to the class.
180179
</remarks>
181180
<example>

dotnet/xml/Microsoft.ML.TimeSeries/ForecastExtensions.xml

Lines changed: 0 additions & 91 deletions
This file was deleted.

dotnet/xml/Microsoft.ML.TimeSeries/ICanForecast`1.xml

Lines changed: 0 additions & 139 deletions
This file was deleted.

0 commit comments

Comments
 (0)