Weiyuan Wu

Results 76 comments of Weiyuan Wu

Hi @kr011 , thanks for the bug report. I'm working on a fix for this, however, it requires I modify the code generator since these definitions/models are directly generated from...

I'll keep this until the issue is fixed.

I created a minimal reproducible case: ```Rust use bitmex::rest::DeleteOrderRequest; use serde_urlencoded::to_string as to_ustring; fn main() { let mut ord_ids: Vec = Vec::new(); ord_ids.push(serde_json::Value::String("asdf".to_string())); let req = DeleteOrderRequest { cl_ord_id: Some(serde_json::Value::Array(ord_ids)),...

I also took a look at `serde_qs`, it does not support serialize a `vec` of strings to a comma-separated string too. I think the solution here would be to annotate...

We got a similar issue with the following code: ```rust >> let v = Decimal::from_f64(13.815517970299580976037625513).unwrap(); >> v.exp() ``` We are also using Decimal in the blockchain.

This library works on the raw image which is in the numpy array format. There's no way for patchify to get or change the metadata from a tiff file.

Hi @SahadevPoudel can you provide the code with step > 1 that doesn't work?

I think the error message already clarified that it only supports uniform step size. It is not possible to create patches with 256 as the width and 2 as the...

@SahadevPoudel I just added one paragraph at https://github.com/dovahcrow/patchify.py#merge-patches-into-original-image.

Hi @ritulahoti it won't do average. If the patches are overlapped, patchify will de-overlapping and recover the original image if this condition holds `The required condition to successfully recover the...