drastically reduce hidden layers
This commit is contained in:
@@ -14,13 +14,8 @@ use strafesnet_roblox_bot_file::v0;
|
||||
const SIZE_X: usize = 64;
|
||||
const SIZE_Y: usize = 36;
|
||||
const INPUT: usize = SIZE_X * SIZE_Y;
|
||||
const HIDDEN: [usize; 7] = [
|
||||
INPUT >> 1,
|
||||
INPUT >> 2,
|
||||
const HIDDEN: [usize; 2] = [
|
||||
INPUT >> 3,
|
||||
INPUT >> 4,
|
||||
INPUT >> 5,
|
||||
INPUT >> 6,
|
||||
INPUT >> 7,
|
||||
];
|
||||
// MoveForward
|
||||
|
||||
Reference in New Issue
Block a user