Skip to content

Instantly share code, notes, and snippets.

Test
I want toc omment this test
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@robintibor
robintibor / Final_Comparison.ipynb
Last active August 1, 2016 10:40
Results new version
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@robintibor
robintibor / Lowpass_4_FFT_Mystery.ipynb
Created August 15, 2016 13:19
Lowpass Problem/FDI/FFT Net
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@robintibor
robintibor / Robot_Hall_Data_Analysis.ipynb
Last active September 8, 2016 10:58
Mean Variance Data Analysis Robot Hall Days 6,7,8
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@robintibor
robintibor / LearningRateBraindecode.ipynb
Created September 9, 2016 15:05
Learning Rate Scheduling for Braindecode
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@robintibor
robintibor / remove_output.py
Last active November 16, 2016 22:17 — forked from damianavila/remove_output.py
Remove output from IPython notebook from the command line (dev version 1.0).. updated for newer jupyter version
"""
Usage: python remove_output.py notebook.ipynb [ > without_output.ipynb ]
Modified from remove_output by Minrk
"""
import sys
import io
import os
import nbformat
from nbformat import read, write
@robintibor
robintibor / read_attention_meditation.py
Last active December 28, 2016 20:27
Reading attention meditation values from neurosky
from mindwavemobile.MindwaveDataPointReader import MindwaveDataPointReader
mindwaveDataPointReader = MindwaveDataPointReader()
# connect to the mindwave mobile headset...
mindwaveDataPointReader.start()
while True:
# read one data point, data point types are specified in MindwaveDataPoints.py'
dataPoint = mindwaveDataPointReader.readNextDataPoint()
if hasattr(dataPoint, 'attentionValue'):
# do whatever you want to do with dataPoint.attentionValue
pass
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.