Jacob Anderson

Results 9 comments of Jacob Anderson

Here is sample code for computing the stringency in python: ``` import numpy as np def stringency(ip) : w = 0.31047 z = np.zeros((2,9)) tg = np.array([1,1,0,0,1,1,1,0,1]) zfactor = np.where(ip==0,0,1)...

I have a similar issue. The nuget 3.1.x version works fine with our grammar, but the latest 3.5.x version complains about the same errors listed in the OP's report.

The problem with this test is that the values array is not being broadcast/broadened properly. The assert expects the values array to match the size of the indices array. In...

It's likely a deadlock in the .Result call. That can happen if you call the async client from inside a web application. ``` HttpClient client = new HttpClient(); HttpResponseMessage resp...

I created a test case with your exact code and ran it using my dev fork of NumSharp. No errors were produced. Are you using an out dated NumSharp?

There is an issue with auto-broadening of scalar operands in the framework. For instance: var foo = (array > 12f); // fails var foo = np.full(12f, array.shape); var result =...

This occurs in 2022.3.10686 installed today. Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://(server)/api/telemetry/process. (Reason: CORS request did not succeed). Status code: (null) Uncaught...

my workaround: ADD another binding using the Octopus Manager that used the root binding (no virtual directory as indicated in the stated workaround). This fixes the projects and tasks page....

FWIW - I tested a deployment and it appears to be working. I did not change any of our deploy agents. Just added the root binding and used existing deployment...