Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
d599b81
WIP: Created reconstruction method
Apr 26, 2018
bee4045
Initial commit
May 16, 2018
7d7c6d2
Initial Commit, attempt2
May 16, 2018
0a1fb37
Merge branch 'master' into invenc
dhuberdeau May 16, 2018
94f5eea
Initial Commit, attempt3
May 16, 2018
16882f8
Merge branch 'invenc' of https://github.com/dhuberdeau/brainiak into …
May 16, 2018
9755bda
initial commit attempt4
May 16, 2018
1299eb5
initial commit attempt5
May 17, 2018
661482b
Initial Commit, attempt6
Jun 1, 2018
f048920
initial commit attempt 7
Jun 3, 2018
40f574e
Addressing review comments
Jun 5, 2018
7019566
Address reviews.. examples
Jun 6, 2018
e734d86
Review responses.. improve stability, add control
Jun 6, 2018
b655e28
Fixed instability
Jun 8, 2018
09e5202
loosen data restrictions
Jun 15, 2018
1b4e30f
making normalization optional
dhuberdeau Jun 27, 2018
b705c8b
Update how simulated data is generated in test
dhuberdeau Jul 26, 2019
ba904c9
Code formatting
dhuberdeau Jul 26, 2019
7b2fb87
formatting. Added options to init function, including stimulus_mode (…
vyaivo Aug 12, 2019
9e8cf9e
changed definition of Brouwer & Heeger C1 in fit method. Now uses one…
vyaivo Aug 12, 2019
9862d2b
made variable names more generic. In predict method, removed data mat…
vyaivo Aug 12, 2019
1d5c444
in _define_channels method, used linspace to define channel centers (…
vyaivo Aug 12, 2019
e79765a
fixed score method to handle circular & half-circular data
vyaivo Aug 12, 2019
c3500bb
moved circ_dist to generic utils script. using scipy circmean in scor…
vyaivo Aug 12, 2019
b72f1fe
moved input checks to separate function. also moved code for defining…
vyaivo Aug 14, 2019
27f9eb3
added synthetic data generation for 1D receptive fields to utils. Use…
vyaivo Aug 14, 2019
31bcc0e
modified synthetic data example to generate data from localized recep…
vyaivo Aug 14, 2019
fe78e83
Merge pull request #1 from vyaivo/iem-pr
dhuberdeau Oct 10, 2019
0abf8f5
Merge branch 'master' into invenc
vyaivo Oct 10, 2019
6839bd5
fixed issues raised by tests, lack of coverage by tests, or formattin…
vyaivo Oct 11, 2019
6196f40
adding tests for generating voxel RF data
vyaivo Oct 11, 2019
393c341
adding tests for generating voxel RF data
vyaivo Oct 11, 2019
08ceeaa
Merge branch 'invenc' of https://github.com/dhuberdeau/brainiak into …
vyaivo Oct 11, 2019
837b9d6
removed old example files
vyaivo Nov 14, 2019
9c12eaf
removed extra comments & unused variable. set a global variable for c…
vyaivo Nov 14, 2019
ec951a8
made minor fixes to import and initial IEM object creation
vyaivo Nov 14, 2019
3900bd9
removed outdated example files
vyaivo Nov 14, 2019
9b17888
formatting changes
vyaivo Nov 14, 2019
815f046
Merge remote-tracking branch 'upstream/master' into dhub-invenc
vyaivo Nov 14, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions brainiak/reconstruct/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright 2018 David Huberdeau & Peter Kok
Comment thread
vyaivo marked this conversation as resolved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Inverted encoding model for recreating continuous representations."""
Loading