Skip to content

Latest commit

 

History

History
124 lines (61 loc) · 5.04 KB

Windows.md

File metadata and controls

124 lines (61 loc) · 5.04 KB

Neural Network Training on Windows

December 8, 2022

The preferred and most compatible way to train networks is using the Windows Subsystem for Linux (WSL2). However, WSL2 is not always available. The instructions in this document demonstrate how to train networks natively on Windows, without WSL2.

Requirements

64-bit Windows

Windows must run in 64-bit mode. To check, use the Start menu and type “About”.

about

windows version

Packages

Several applications and packages are needed. Some of the installation steps may require administrator privileges.

Analog Devices MSDK

Install the Analog Devices MSDK for MAX78000/MAX78002.

maximsdk

Python

Install the latest available version of Python 3.8 from python.org. As of late 2021, the latest available 3.8 version with a Windows installer was 3.8.10.

python download

Run the installer, and add Python to the Path:

python install

Allow the installer to disable the PATH length limit.

python path length

git

A git binary is required. Download git from gitforwindows.org or git-scm.com.

gitforwindows.org

git-scm.com

During setup, there are options can be selected for line endings and system settings. The following settings are recommended:

git options

git symbolic links

GIT_PYTHON_GIT_EXECUTABLE Environment Variable

Next, add a new environment variable that points to the location of git.exe. In the Start menu, type “environment” and open the Control panel. Under “System Properties” - “Advanced”, click “Environment Variables…” and add a “New User Variable” with the variable name GIT_PYTHON_GIT_EXECUTABLE and the “mapped” location of git.exe. This value is typically /c/Program Files/Git/cmd/git.exe as shown in the screen shot below.

start-environment

environment-variable

new-variable

It is also possible that if git was installed for just the local user (usually when installed without admin rights), git may be in the user’s AppData folder instead of Program Files:

C:\Users\<username>\AppData\Local\Programs\Git\cmd

By default, Windows hides folders such as the user’s AppData folder as “hidden items”. In order to view these files, hidden items need to be enabled in the File Explorer.

If git was installed in the AppData folder, the environment variable should look as follows:

new-variable

MAX78000 Training and Synthesis Repositories

The next step is to clone the ai8x-training and ai8x-synthesis repositories.

Open a MinGW shell using Start - Maxim Integrated SDK - MinGW:

msdkstart

Next, change to the target directory (the default is C:\MaximSDK\Tools\MinGW\msys\1.0\home\<name>\).

Check out the training and synthesis repositories as detailed in the main documentation.

Troubleshooting

Could not Install Packages due to an OSError

When pip3 install -U pip setuptools wheel returns that it could not uninstall pip3.exe, simply ignore the error and repeat the command one more time.

packages-error

CUDNN_STATUS_INTERNAL_ERROR

On Windows, it may be necessary to limit the number of PyTorch workers to 1 to avoid crashes or internal errors such as CUDNN_STATUS_INTERNAL_ERROR in the training software.

Add --workers=1 when running any training script, for example;

$ scripts/train_mnist.sh --workers=1

Git Executable Error

When running ai8xize.py , the software may display an error regarding GIT_PYTHON_GIT_EXECUTABLE as shown below. Please set the GIT_PYTHON_GIT_EXECUTABLE environment variable as shown [above](#GIT_PYTHON_GIT_EXECUTABLE Environment Variable).

As an alternative, run the following before calling ai8xize.py:

$ source scripts/set-git

Error message:

git-executable-error