solarflarefx
solarflarefx
Does CNTK work on Visual Studio 2019? I downloaded the code and can't seem to get it to compile. Has anyone successfully gotten CNTK to work in Visual Studio 2019...
I am working in a pipeline architecture where all intermediary data resides in the GPU. I am interested in passing data already in the GPU into a DL network with...
Hello, I am looking to train a model in TensorFlow with Python and then do inference in C#. I used this MNist example as a guide: https://github.com/sdg002/MNISTpng I am able...
**Is your feature request related to a problem? Please describe.** When working with large datasets, it can be cumbersome to have to copy data between CPU and GPU, especially when...
I am trying to use the convert_d2.py script to convert my detectron2 model to tensorpack. I have saved my config as a .yaml file, but I am unsure how to...
I am looking to save an NDArray to an image. In Python code, I used the io.imsave() method from skimage.io. I tried using the approach shown here: https://stackoverflow.com/questions/5113919/how-to-convert-2-d-array-into-image-in-c-sharp Basically it...
Is there an equivalent method to np.append? If not, what is the best workaround?
If you declare an array of a specific size, is there a way to assign slices of arrays? For example, if x is an NDArray of size (5,2,3,4), is there...
Hello, In most applications (at least from my experience) source data is usually coming from the CPU, whether that be in training or deployment. Many times, developers will train a...
From the documentation it appears as though the method is designed to work in 2D only: `def regions(image, conn = CONNECTIVITY.FOUR, out_type = Dtype.f32): """ Find the connected components in...