diff --git a/MiniGo/Models/GoModel.swift b/MiniGo/Models/GoModel.swift index 23941100aed..bdd61fb99a2 100644 --- a/MiniGo/Models/GoModel.swift +++ b/MiniGo/Models/GoModel.swift @@ -106,9 +106,9 @@ extension ResidualIdentityBlock: LoadableFromPythonCheckpoint { // This is needed because we can't conform tuples to protocols public struct GoModelOutput: Differentiable { - public let policy: Tensor - public let value: Tensor - public let logits: Tensor + public var policy: Tensor + public var value: Tensor + public var logits: Tensor } public struct GoModel: Layer {