Skip to content

Commit 7721706

Browse files
committed
BT4 distilled policy
Bench: 1282045
1 parent 562b13e commit 7721706

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/chess.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ impl ChessState {
126126
pub const BENCH_DEPTH: usize = 4;
127127

128128
#[cfg(not(feature = "datagen"))]
129-
pub const BENCH_DEPTH: usize = 5;
129+
pub const BENCH_DEPTH: usize = 6;
130130

131131
pub fn board(&self) -> Position {
132132
self.board

src/networks/policy.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ use super::common::{Accumulator, Layer, TransposedLayer};
88

99
// DO NOT MOVE
1010
#[allow(non_upper_case_globals, dead_code)]
11-
pub const PolicyFileDefaultName: &str = "nn-06e27b5ef6e7.network";
11+
pub const PolicyFileDefaultName: &str = "nn-54c1b0dc9f59.network";
1212
#[allow(non_upper_case_globals, dead_code)]
13-
pub const CompressedPolicyName: &str = "nn-bef5cb915ecf.network";
13+
pub const CompressedPolicyName: &str = "nn-1d51d22ed5ba.network";
1414
#[allow(non_upper_case_globals, dead_code)]
15-
pub const DatagenPolicyFileName: &str = "nn-06e27b5ef6e7.network";
15+
pub const DatagenPolicyFileName: &str = "nn-54c1b0dc9f59.network";
1616

1717
const QA: i16 = 128;
1818
const QB: i16 = 128;

0 commit comments

Comments
 (0)