Skip to content

Commit 42a1440

Browse files
Address feedback
1 parent 4a26c65 commit 42a1440

2 files changed

Lines changed: 2 additions & 9 deletions

File tree

Document-Processing/SmartDataExtractor/SmartFormRecognizer/NET/assemblies-required.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ The following assemblies need to be referenced in your application based on the
2727
<li>Syncfusion.Pdf.Base</li>
2828
<li>Syncfusion.Compression.Base</li>
2929
<li>Syncfusion.PdfToImageConverter.Base</li>
30-
<li>Microsoft.ML.OnnxRuntime – Version="1.18.0"</li>
31-
<li>Newtonsoft.Json – Version="13.0"</li>
3230
</ul>
3331
</td>
3432
</tr>
@@ -42,8 +40,6 @@ The following assemblies need to be referenced in your application based on the
4240
<li>Syncfusion.Pdf.Portable</li>
4341
<li>Syncfusion.Compression.Portable</li>
4442
<li>Syncfusion.PdfToImageConverter.Portable</li>
45-
<li>Microsoft.ML.OnnxRuntime – Version="1.18.0"</li>
46-
<li>Newtonsoft.Json – Version="13.0.2"</li>
4743
</ul>
4844
</td>
4945
</tr>
@@ -56,8 +52,6 @@ The following assemblies need to be referenced in your application based on the
5652
<li>Syncfusion.Pdf.NET</li>
5753
<li>Syncfusion.Compression.NET</li>
5854
<li>Syncfusion.PdfToImageConverter.NET</li>
59-
<li>Microsoft.ML.OnnxRuntime – Version="1.18.0"</li>
60-
<li>Newtonsoft.Json – Version="13.0.2"</li>
6155
</ul>
6256
</td>
6357
</tr>

Document-Processing/SmartDataExtractor/SmartFormRecognizer/NET/working-with-recognize-option.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,10 @@ recognizer.FormRecognizeOptions.ConfidenceThreshold = 0.9;
8686

8787
FormRecognizer recognizer = new FormRecognizer();
8888
// Set a single page range – detects only the specified page
89-
recognizer.FormRecognizeOptions.PageRange = new int[,] { { 3 } };
90-
recognizer.FormRecognizeOptions.PageRange = new int[,] { { 8 } };
89+
recognizer.FormRecognizeOptions.PageRange = new int[,]{{ 3 }{ 8 }};
9190

9291
// Set a page range – detects content between the specified start and end page
93-
recognizer.FormRecognizeOptions.PageRange = new int[,] { { 3, 8 } };
92+
recognizer.FormRecognizeOptions.PageRange = new int[,]{{ 3, 8 }};
9493

9594
{% endhighlight %}
9695
{% endtabs %}

0 commit comments

Comments
 (0)