Skip to content

Commit ded4087

Browse files
Resolved the CI issues
1 parent c0d27bf commit ded4087

20 files changed

Lines changed: 41 additions & 23 deletions

Document-Processing-toc.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -116,25 +116,25 @@
116116
<li>SmartDataExtractor
117117
<ul>
118118
<li>
119-
<a href="/document-processing/SmartDataExtractor/NET/overview">NET</a>
119+
<a href="/document-processing/DataExtraction/NET/overview">NET</a>
120120
<ul>
121121
<li>
122-
<a href="/document-processing/SmartDataExtractor/NET/DataExtractor/overview">DataExtractor</a>
122+
<a href="/document-processing/DataExtraction/NET/SmartDataExtractor/overview">DataExtractor</a>
123123
<ul>
124124
<li>
125-
<a href="/document-processing/SmartDataExtractor/NET/DataExtractor/Assemblies-Required">Assemblies Required</a>
125+
<a href="/document-processing/DataExtraction/NET/SmartDataExtractor/Assemblies-Required">Assemblies Required</a>
126126
</li>
127127
<li>
128-
<a href="/document-processing/SmartDataExtractor/NET/DataExtractor/NuGet-Packages-Required">NuGet Packages Required</a>
128+
<a href="/document-processing/DataExtraction/NET/SmartDataExtractor/NuGet-Packages-Required">NuGet Packages Required</a>
129129
</li>
130130
<li>
131-
<a href="/document-processing/SmartDataExtractor/NET/DataExtractor/Features">Features</a>
131+
<a href="/document-processing/DataExtraction/NET/SmartDataExtractor/Features">Features</a>
132132
</li>
133133
<li>
134-
<a href="/document-processing/SmartDataExtractor/NET/DataExtractor/FAQ">FAQ</a>
134+
<a href="/document-processing/DataExtraction/NET/SmartDataExtractor/FAQ">FAQ</a>
135135
<ul>
136136
<li>
137-
<a href="/document-processing/SmartDataExtractor/NET/DataExtractor/FAQ/how to resolve the ONNX file missing error in Smart Data Extractor">How to resolve the “ONNX file missing” error</a>
137+
<a href="/document-processing/DataExtraction/NET/SmartDataExtractor/FAQ/how-to-resolve-the-onnx-file-missing-error-in-smart-data-extractor">How to resolve the “ONNX file missing” error</a>
138138
</li>
139139
</ul>
140140
</li>
@@ -143,22 +143,22 @@
143143
</ul>
144144
<ul>
145145
<li>
146-
<a href="/document-processing/SmartDataExtractor/NET/TableExtractor/overview">TableExtractor</a>
146+
<a href="/document-processing/DataExtraction/NET/SmartTableExtractor/overview">TableExtractor</a>
147147
<ul>
148148
<li>
149-
<a href="/document-processing/SmartDataExtractor/NET/TableExtractor/Assemblies-Required">Assemblies Required</a>
149+
<a href="/document-processing/DataExtraction/NET/SmartTableExtractor/Assemblies-Required">Assemblies Required</a>
150150
</li>
151151
<li>
152-
<a href="/document-processing/SmartDataExtractor/NET/TableExtractor/NuGet-Packages-Required">NuGet Packages Required</a>
152+
<a href="/document-processing/DataExtraction/NET/SmartTableExtractor/NuGet-Packages-Required">NuGet Packages Required</a>
153153
</li>
154154
<li>
155-
<a href="/document-processing/SmartDataExtractor/NET/TableExtractor/Features">Features</a>
155+
<a href="/document-processing/DataExtraction/NET/SmartTableExtractor/Features">Features</a>
156156
</li>
157157
<li>
158-
<a href="/document-processing/SmartDataExtractor/NET/TableExtractor/FAQ">FAQ</a>
158+
<a href="/document-processing/DataExtraction/NET/SmartTableExtractor/FAQ">FAQ</a>
159159
<ul>
160160
<li>
161-
<a href="/document-processing/SmartDataExtractor/NET/TableExtractor/FAQ/how to resolve the ONNX file missing error in Smart Table Extractor">How to resolve the “ONNX file missing” error</a>
161+
<a href="/document-processing/DataExtraction/NET/SmartTableExtractor/FAQ/how-to-resolve-the-onnx-file-missing-error-in-smart-table-extractor">How to resolve the “ONNX file missing” error</a>
162162
</li>
163163
</ul>
164164
</li>

Document-Processing/SmartDataExtractor/NET/DataExtractor/Assemblies-Required.md renamed to Document-Processing/DataExtraction/NET/SmartDataExtractor/Assemblies-Required.md

File renamed without changes.

Document-Processing/SmartDataExtractor/NET/DataExtractor/FAQ/how to resolve the ONNX file missing error in Smart Data Extractor.md renamed to Document-Processing/DataExtraction/NET/SmartDataExtractor/FAQ/how-to-resolve-the-onnx-file-missing-error-in-smart-data-extractor

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,10 @@ Solution:
2424

2525
1. Run a build so the application output is generated under `bin\Debug\netX.X\runtimes` (or your configured build configuration and target framework).
2626
2. Locate the project's build output `bin` path (for example: `bin\Debug\net6.0\runtimes`).
27-
3. Place all required ONNX model files into a `runtimes\models` folder inside that bin path (for example: `bin\Debug\net6.0\runtimes\models\syncfusion_doclayout.onnx`).
27+
3. Place all required ONNX model files into a `runtimes\models` folder inside that bin path.
2828
4. In Visual Studio, for each ONNX file set **Properties → Copy to Output Directory → Copy always** so the model is included on every build.
2929
5. Rebuild and run your project. The extractor should now find the ONNX models and operate correctly.
3030

31-
Screenshot placeholder
32-
33-
Add a screenshot showing the exception or the `runtimes\models` folder layout. Save the image in the repo (suggested path relative to this file): `../images/onnx-missing.png` and include it here:
34-
3531
Notes:
3632

3733
- If you publish your application, ensure the `runtimes\models` folder and ONNX files are included in the publish output (you may need to mark files as content in the project file or use a <Content> entry).

Document-Processing/SmartDataExtractor/NET/DataExtractor/Features.md renamed to Document-Processing/DataExtraction/NET/SmartDataExtractor/Features.md

File renamed without changes.

Document-Processing/SmartDataExtractor/NET/DataExtractor/NuGet-Packages-Required.md renamed to Document-Processing/DataExtraction/NET/SmartDataExtractor/NuGet-Packages-Required.md

File renamed without changes.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Extract structured data from PDF and image documents in .NET | Syncfusion
3+
description: Syncfusion® Smart Data Extractor is a .NET library that extracts tables, form fields, text blocks, and images from PDF and image documents, producing PDFs and structured JSON for verification, automation and processing.
4+
platform: document-processing
5+
control: SmartDataExtractor
6+
documentation: UG
7+
---
8+
9+
# Frequently Asked Questions in Blazor SfPdfViewer Component
10+
11+
Common questions and answers for using the Syncfusion Blazor SfPdfViewer component.
12+
13+
* [How to Resolve the ONNX File Missing Error in Smart Data Extractor?](./FAQ/how-to-resolve-the-onnx-file-missing-error-in-smart-data-extractor)

Document-Processing/SmartDataExtractor/NET/DataExtractor/overview.md renamed to Document-Processing/DataExtraction/NET/SmartDataExtractor/overview.md

File renamed without changes.

Document-Processing/SmartDataExtractor/NET/TableExtractor/Assemblies-Required.md renamed to Document-Processing/DataExtraction/NET/SmartTableExtractor/Assemblies-Required.md

File renamed without changes.

Document-Processing/SmartDataExtractor/NET/TableExtractor/FAQ/how to resolve the ONNX file missing error in Smart Table Extractor.md renamed to Document-Processing/DataExtraction/NET/SmartTableExtractor/FAQ/how-to-resolve-the-onnx-file-missing-error-in-smart-table-extractor

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,10 @@ Solution:
2424

2525
1. Run a build so the application output is generated under `bin\Debug\netX.X\runtimes` (or your configured build configuration and target framework).
2626
2. Locate the project's build output `bin` path (for example: `bin\Debug\net6.0\runtimes`).
27-
3. Place all required ONNX model files into a `runtimes\models` folder inside that bin path (for example: `bin\Debug\net6.0\runtimes\models\syncfusion_doclayout.onnx`).
27+
3. Place all required ONNX model files into a `runtimes\models` folder inside that bin path.
2828
4. In Visual Studio, for each ONNX file set **Properties → Copy to Output Directory → Copy always** so the model is included on every build.
2929
5. Rebuild and run your project. The extractor should now find the ONNX models and operate correctly.
3030

31-
Screenshot placeholder
32-
33-
Add a screenshot showing the exception or the `runtimes\models` folder layout. Save the image in the repo (suggested path relative to this file): `../images/onnx-missing.png` and include it here:
34-
3531
Notes:
3632

3733
- If you publish your application, ensure the `runtimes\models` folder and ONNX files are included in the publish output (you may need to mark files as content in the project file or use a <Content> entry).

Document-Processing/SmartDataExtractor/NET/TableExtractor/Features.md renamed to Document-Processing/DataExtraction/NET/SmartTableExtractor/Features.md

File renamed without changes.

0 commit comments

Comments
 (0)