Skip to content

Commit 5b80e1a

Browse files
committed
Fix erroneous self. in deployment example
Thank you, @HammanWahab for the report. Fixes #1
1 parent c26d8a5 commit 5b80e1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebooks/deployment_monitoring_example.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
" first_part = min(self.N - self.next_idx, bs)\n",
170170
" self.feature_rb[self.next_idx: self.next_idx + first_part] = output[:first_part]\n",
171171
" if first_part < bs:\n",
172-
" self.feature_rb[: bs - first_part] = self.output[first_part:]\n",
172+
" self.feature_rb[: bs - first_part] = output[first_part:]\n",
173173
" if not self.have_full_round and self.next_idx + bs >= self.N:\n",
174174
" self.have_full_round = True\n",
175175
" self.next_idx = (self.next_idx + bs) % self.N\n",

0 commit comments

Comments
 (0)