Skip to content

Commit f3d642e

Browse files
authored
Update README.md
1 parent 591e8dd commit f3d642e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,10 @@ This class acts as a container to quickly check and modify any setting at any ti
138138
For example, it is possible to customize the criteria used by the networks to check their performance during training
139139

140140
```C#
141-
NetworkSettings.AccuracyTester = AccuracyTesters.Argmax(); // The default mode (mutually-exclusive classes)
141+
NetworkSettings.AccuracyTester = AccuracyTesters.Argmax(); // The default mode (mutually-exclusive classes)
142142
143143
// Other testers are available too
144-
NetworkSettings.AccuracyTester = AccuracyTesters.Threshold(); // Useful for overlapping classes
144+
NetworkSettings.AccuracyTester = AccuracyTesters.Threshold(); // Useful for overlapping classes
145145
NetworkSettings.AccuracyTester = AccuracyTesters.Distance(0.2f); // Distance between results and expected outputs
146146
```
147147

@@ -185,7 +185,7 @@ The **NeuralNetwork.NET** library requires .NET Standard 2.0 support, so it is a
185185
- .NET Framework >= 4.6.1
186186
- .NET Core >= 2.0
187187
- UWP (from SDK 10.0.16299)
188-
- Mono 5.4
188+
- Mono >= 5.4
189189
- Xamarin.iOS 10.14, Xamarin.Mac 3.8, Xamarin.Android 8.0
190190

191-
In addition to the frameworks above, you need an IDE with C# 7.2 support to compile the library on your PC.
191+
In addition to the frameworks above, you need an IDE with C# 7.3 support to compile the library on your PC.

0 commit comments

Comments
 (0)