huangkui
huangkui
This error also occurred under c# (v2.7.0). Here is my code: ```c# Parallel.For(0, 10000 , (i) => { float[] raw = pRasterLayerCursorTool.PickRagneNormalValue( 10, 10, 9, 9); int cover = dqn.Predict(state);...
I have solved it by lock object in Parallel, ```c# Parallel.For(0, 10000 , (i) =>{ //the type of model is 'CNTK.Function' lock(model){ float[] raw = pRasterLayerCursorTool.PickRagneNormalValue( 10, 10, 9, 9);...
To Implement RL such as DQN, I need to train neural network after an observation. however, i don't know how to split train data to train the neural network by...
> In DbaseFileHeader class line 311 > `string name = DbaseEncodingUtility.Latin1.GetString(buffer, 0, buffer.Length);` > when the field value is Chinese character, it cant get the correct value. > it should...
  
for more details: