Skip to content

Commit

Permalink
Fixed 2 typos on the Neural_Receiver.ipynb notebook (#406)
Browse files Browse the repository at this point in the history
Just fixed 2 typos on the Neural Receiver notebook. I substituted "receover" with "receiver"

Signed-off-by: Pablo Suárez <[email protected]>
  • Loading branch information
pablosreyero authored Apr 23, 2024
1 parent 29dba8d commit 34fa468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/Neural_Receiver.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@
"\n",
"######################################\n",
"## Receiver \n",
"# The neural receover computes LLRs from the frequency domain received symbols and N0\n",
"# The neural receiver computes LLRs from the frequency domain received symbols and N0\n",
"y = tf.squeeze(y, axis=1)\n",
"llr = neural_receiver([y, no])\n",
"print(\"llr shape: \", llr.shape)\n",
Expand Down Expand Up @@ -755,7 +755,7 @@
" no_eff_= expand_to_rank(no_eff, tf.rank(x_hat))\n",
" llr = self._demapper([x_hat, no_eff_]) # Demapping\n",
" elif self._system == \"neural-receiver\":\n",
" # The neural receover computes LLRs from the frequency domain received symbols and N0\n",
" # The neural receiver computes LLRs from the frequency domain received symbols and N0\n",
" y = tf.squeeze(y, axis=1)\n",
" llr = self._neural_receiver([y, no])\n",
" llr = insert_dims(llr, 2, 1) # Reshape the input to fit what the resource grid demapper is expected\n",
Expand Down

0 comments on commit 34fa468

Please sign in to comment.