Skip to content
#

Rust

rust logo

Rust is a systems programming language created by Mozilla. It is similar to C++, but is designed for improved memory safety without sacrificing performance.

Here are 352 public repositories matching this topic...

ehoppmann
ehoppmann commented Aug 23, 2019

Our xgboost models use the binary:logistic' objective function, however the m2cgen converted version of the models return raw scores instead of the transformed scores.

This is fine as long as the user knows this is happening! I didn't, so it took a while to figure out what was going on. I'm wondering if perhaps a useful warning could be raised for users to alert them of this issue? A warning

bug help wanted good first issue
trezor-firmware
mre
mre commented Sep 21, 2019

From our benchmarks we can see that we are consistently slower than everyone else when serializing/deserializing boolean values. We should fix that.

orjson is using an unsafe block to create a reference to a boolean:
https://github.com/ijl/orjson/blob/03d55e99a953ce93cedc05f03e4b63b0bcbbcc7a/src/decode.rs#L81-L96

This avoids additional allocations.
For comparison, this is our code at the

enhancement help wanted good first issue hacktoberfest
aewallin
aewallin commented Jun 8, 2019

ARTIQ Feature Request

Problem this request addresses

It would be nice to access scan objects like RangeScan through indexes such as RangeScan[0] (which now is available as RangeScan.start) etc.

Describe the solution you'd like

This seems doable by defining a __getitem__() method for the scan classes?
If the sequence is predefined/allocated in the constructor then there s

Created by Graydon Hoare

Released 2010

Organization
rust-lang
Website
www.rust-lang.org
Wikipedia
Wikipedia

Related Topics

c-plus-plus language