-
-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Description
When running it out of the box but converted to .NET 5.0, it downloaded the model ("https://www.cntk.ai/Models/Caffe_Converted/VGG19_ImageNet_Caffe.model") but it had 0 size. The problem is apparently a certificate error. I fixed it by adding the lines
// There is a Certificate error. This fixes it by bypassing the check
System.Net.ServicePointManager.ServerCertificateValidationCallback +=
(send, certificate, chain, sslPolicyErrors) => { return true; };
before client.DownloadFileAsync in StartDownload.
There may be better ways.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels