Skip to content

Commit d8de2cb

Browse files
update readme and document link
1 parent c729952 commit d8de2cb

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

Tools/WinMLDashboard/README.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,20 @@ The **Convert** tab (see snip below) helps convert models from several different
3232

3333
In order to do the conversion, the tool installs a separate Python environment and a set of converter tools. This helps alleviate one of the big pain points of a typical developer - installing the right Python environment and tool chain for conversion and validating the model.
3434

35-
WinMLTools provides quantization feature to reduce the memory footprint of the model.
35+
WinMLTools provides [quantization](https://docs.microsoft.com/en-us/windows/ai/convert-model-winmltools#quantize-onnx-model) feature to reduce the memory footprint of the model.
3636

37-
For **quantization**:
38-
|Type |Usage |
39-
|-----|--------|
40-
|**Type1**|Do not use dequantize_linear option, the converted model can only be run in Win10 released before [Version 1809 (OS build 17763)](https://support.microsoft.com/en-us/help/4464619/windows-10-update-history)|
41-
|**Type2**|Use dequantize_linear option, the converted model can also be run in Win10 release after Version 1809 (OS build 17763)|
37+
For **quantization:**
38+
39+
|Type |Usage |
40+
|------------|-------|
41+
|**Type1** |Do not use dequantize_linear option, the converted model can only be run in Win10 released before [Version 1809 (OS build 17763)](https://support.microsoft.com/en-us/help/4464619/windows-10-update-history) |
42+
|**Type2** |Use dequantize_linear option, the converted model can also be run in Win10 release after Version 1809 (OS build 17763) |
43+
44+
For **ONNX Version:**
45+
|Version |For Windows 10 Build|
46+
|------------|-----|
47+
|1.2 |[1809 (OS build 17763)](https://support.microsoft.com/en-us/help/4464619/windows-10-update-history)|
48+
|1.3 |after 1809 (OS build 17763)|
4249

4350
<img src="./public/Converter.png" width=800/>
4451

Tools/WinMLDashboard/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resultPromise = electronInstaller.createWindowsInstaller({
55
appDirectory: path.join('./release/WinMLDashboard-win32-x64'),
66
authors: 'Microsoft Corporation',
77
exe: 'WinMLDashboard.exe',
8-
iconUrl: 'https://github.com/Microsoft/Windows-Machine-Learning/blob/RS5/Tools/WinMLDashboard/public/winml_icon.ico',
8+
iconUrl: 'https://github.com/Microsoft/Windows-Machine-Learning/blob/master/Tools/WinMLDashboard/public/winml_icon.ico',
99
loadingGif: './public/progress_bar.gif',
1010
noMsi: true,
1111
outputDirectory: path.join('./installer'),

Tools/WinMLDashboard/src/native/menu.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function createMenu(electron: typeof Electron) {
2222
{
2323
label: 'Documentation',
2424
click() {
25-
const tpnUrl = 'https://github.com/Microsoft/Windows-Machine-Learning/blob/RS5/Tools/WinMLDashboard/README.md';
25+
const tpnUrl = 'https://github.com/Microsoft/Windows-Machine-Learning/blob/master/Tools/WinMLDashboard/README.md';
2626
require('electron').shell.openExternal(tpnUrl);
2727
},
2828
},
@@ -39,7 +39,7 @@ export function createMenu(electron: typeof Electron) {
3939
{
4040
label: 'Third Party Notice',
4141
click() {
42-
const tpnUrl = 'https://github.com/Microsoft/Windows-Machine-Learning/blob/RS5/Tools/WinMLDashboard/ThirdPartyNotice.txt';
42+
const tpnUrl = 'https://github.com/Microsoft/Windows-Machine-Learning/blob/master/Tools/WinMLDashboard/ThirdPartyNotice.txt';
4343
require('electron').shell.openExternal(tpnUrl);
4444
},
4545
},

0 commit comments

Comments
 (0)