Rano | Ranadeep
Rano | Ranadeep
I tried with ``` d = MIPVerify.find_adversarial_example(cnn, MIPVerify.get_image(mnist.train.images, 1), 10, GurobiSolver(), pp=MIPVerify.LInfNormBoundedPerturbationFamily(.005), tightening_algorithm=interval_arithmetic) ``` But it throws errors, ``` [notice | MIPVerify]: Attempting to find adversarial example. Neural net predicted...
Awesome! Thanks for reaching out but I am busy these days. Can't really say when I will have some free time to take a dig at it. --- On second...
I think that this can be closed - [chan_open_init](https://github.com/cosmos/ibc-rs/blob/v0.51.0/ibc-core/ics04-channel/src/handler/chan_open_init.rs#L47) - [chan_open_try](https://github.com/cosmos/ibc-rs/blob/v0.51.0/ibc-core/ics04-channel/src/handler/chan_open_try.rs#L53)
My quick-fix is to use Serde field attributes. ``` pub fn base64_to_bytes, { let value: Option = Deserialize::deserialize(deserializer)?; Ok(match value { Some(value) => base64::decode(value).map_err(D::Error::custom)?, None => vec![], }) } ///...
I found `serde_with` which can be used with `field_attributes` for `data: ::prost::alloc::vec::Vec`. ``` config.field_attribute("data", "#[serde(with = \"serde_with::As::\")]"); ``` or for `repeated_data: ::prost::alloc::vec::Vec` ``` config.field_attribute("repeated_data", "#[serde(with = \"serde_with::As::\")]"); ```
maybe `protobufjs` can be updated to the latest version too.
I didn't take a look at your source code before. Regarding point 2, it is possible to go around it. ```toml [target.'cfg(all(not(feature = "default"), not(feature = "lite")))'.dependencies] regex = {version...
> I think it has exactly no impact due to the rest Exactly. That's why I turned it off - so that `no_std` doesn't pull `regex/std`. You already pull `regex/default`...
The RFC impl is merged in the latest nightly. `displaydoc` dependent nighly crates are getting the warning now.
The issue of the acceptance criteria is closed. Does that make this issue finished too?