AndreyOrb
AndreyOrb
### Describe the issue I have this TF/keras model: ``` def build_model(): image_input = Input(shape=(None, 1), name='image', dtype='float32') img_width_input = Input(shape=(), name='width', dtype='int32') max_width = tf.reduce_max(img_width_input) mask = tf.sequence_mask(img_width_input, max_width)...
I tried to install the package using NuGet and got this error: `Could not install package 'LightGBMNet.Tree 1.0.22'. You are trying to install this package into a project that targets...
### Describe the issue I have shared env. allocators in my program: ``` // Create shared GPU allocator (registered in env.) try { ASSERT_CUDA_STATUS(cudaSetDevice(gpuNum)); static Ort::MemoryInfo memoryInfo("Cuda", OrtArenaAllocator, gpuNum, OrtMemTypeDefault);...
Currently, I have this line of code: `toast(title=mail_subject, body=mail_body_first_line, on_click=self.open_email)` I would like to add more functionality by adding buttons. ``` buttons = [ {'activationType': 'background', 'arguments': 'Lalala', 'content': 'Read...