JadenTravnik

Results 4 comments of JadenTravnik

I get a similar problem with integers: ``` void setup() { Serial.begin(9600); } void loop() { String strA = "A: ", strB = "B: "; int num = random(10, 20);...

I see, thank you for explaining that. I still believe this is an issue though. I don't think that the compiler should just add a number to a string pointer...

I understand that is the case. It was just annoying coming from languages like java, javascript, C#, etc that perform the concatenation implicitly. Looking further into this I found that...

Giving either the full path or the relative `pretrained/defend_the_center.pth` works fine after this change: ``` model_path = params.reload #os.path.join(params.dump_path, params.reload) ``` because the model is stored in `/pretrained/defend_the_center.pth` in the...