Skip to content

Commit

Permalink
Update Activity Detection.ipynb
Browse files Browse the repository at this point in the history
  • Loading branch information
aaqibsaeed authored Aug 26, 2017
1 parent f0a1660 commit 0bb2d18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Activity Detection.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"def windows(data, size):\n",
" start = 0\n",
" while start < data.count():\n",
" yield start, start + size\n",
" yield int(start), int(start + size)\n",
" start += (size / 2)\n",
"\n",
"def segment_signal(data,window_size = 90):\n",
Expand Down

0 comments on commit 0bb2d18

Please sign in to comment.