Lucas Zanini

Results 12 comments of Lucas Zanini

Is your rust stable version up to date ? The tungstenite crate rely on const generics, which were introducted in [1.51](https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1510-2021-03-25)

Do you see this as being an issue with the `mdbook` crate, for not allowing newlines inside html, or as an issue with `mdbook-katex`, for yielding newlines in html where...

What is a math expressiones code block ? I am not sure what you are trying to achieve here

What is the point of code block quotes then ?

Sorry, what I meant was: what is the point of adding code blocks around Tex equations, if what you want to achieve is simply an equation ? And why should...

Oh I see. I should be able to fix this, I'll look into it

@ZararB Thanks, this was very helpful! Do you happen to have a solution to read current training data? Using `TarTrainingFile` yield following error `Exception: Only version 3 of training data...

@ZararB thank you for your answer. Did you manage to get correct evaluations using `lczero-training` network with inputs computed by this library? I get the network to run, but output...

@ZararB Where does the term `x - np.max(x)` come from in your softmax definition? The usual definition (and the one defined in tensorflow) is simply `softmax = tf.exp(logits) / tf.reduce_sum(tf.exp(logits),...

You're right! Thanks again 👍