Devon
Devon
Getting same issue with large text. Here is the output I got from preprocessing: Creating vocabulary... Converting word to indices... Converting 682 sentences with length between 31 and 40 Converting...
Looks like this is caused by 0 length lines You should filter those out
> What's the grim+tit-for-tat strategy that dominates in your meta? Even just defecting on first defect and going grim after two defects will beat tit for tat in example strategies....
@Quadrapod if you are talking about the better detective one, that isn't mine. I primarily tune based on a dataset of various strategies either I came up with or others...
## `shader.slang` ```slang RWStructuredBuffer bar; [shader("compute")] [numthreads(64, 1, 1)] void main(uint2 dispatchThreadId : SV_DispatchThreadID) { } ``` ## main.rs ```rust use slang::Downcast; fn main() { let global_session = slang::GlobalSession::new().unwrap(); let...
@laggui Here's a MWE. main.rs ```rust use burn::{ backend::Wgpu, nn::{loss::CrossEntropyLossConfig, RotaryEncoding, RotaryEncodingConfig}, prelude::* }; fn main() { type B = Wgpu; let device = ::Device::default(); let context_length = 512; let...
I got this error as well. But I can trigger it without a generic interface and without using multiple modules. This is as close to a minimal example as I...