Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MRG] hnn-core integration #232

Merged
merged 111 commits into from
Mar 21, 2021

Commits on Mar 16, 2021

  1. MAINT: pass params dict to MorletSpec

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    b255e02 View commit details
    Browse the repository at this point in the history
  2. MAINT: use hnn-core to reduce parameter file reads

    Known bug with loading parameter files with rythmic inputs. Something
    with displaying the spectrogram.
    
    Prep for hnn-core integration by first reducing the number of times
    a paramter file is opened. Instead pass the params dictionary where
    convenient.
    
    This commit replaces some calls to read functions in paramrw with
    hnn_core.read_params, but some calls remain.
    
    Parameter typing is done in hnn_core, use that when possible instead
    of adding checks in the code (note paramrw.py functions).
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    f289bc4 View commit details
    Browse the repository at this point in the history
  3. MAINT: infer number of trials in readdpltrials

    Doesn't require passing a parameter anymore. Also, the number of data files
    may not match the number of trials in the configuration (e.g. failure on
    previous simulation)
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    c2abd07 View commit details
    Browse the repository at this point in the history
  4. ENH: run simulations with hnn-core

    Changes to run.py to call hnn_core.simulate_dipole using MPIBackend.
    
    Updated hnn_qt5.py to not fork a mpiexec process, but instead call
    simulatio() within run.py
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    a624e6f View commit details
    Browse the repository at this point in the history
  5. MAINT: more hnn-core integration pieces

    Parameter handling:
     - remove read, quickreadprm, and quickgetparm from paramrw.py
     - use params['sim_prefix'] where possible
    
    Simulation output files:
     - write spk, dpl, param, and gid_dict files after simulation
     - fix error handling in simdat.updatedat
    
    Misc:
     - mark files and functions to be deprecated/moved
     - add excepthook to RunSimThread
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    db06efc View commit details
    Browse the repository at this point in the history
  6. MAINT: better exception handling in hnn_qt5.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    17f1c51 View commit details
    Browse the repository at this point in the history
  7. MAINT: use hnn-core dipole in specfn.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    11dec6f View commit details
    Browse the repository at this point in the history
  8. MAINT: use hnn-core read_spikes in spikefn.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    89675e8 View commit details
    Browse the repository at this point in the history
  9. MAINT: update visrast.py for hnn-core

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    000555a View commit details
    Browse the repository at this point in the history
  10. MAINT: don't use -1 for 'T_pois' param

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    508e9df View commit details
    Browse the repository at this point in the history
  11. MAINT: deprecate unused code

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    af141a0 View commit details
    Browse the repository at this point in the history
  12. BUG: fix ordering of saving files

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    08ece12 View commit details
    Browse the repository at this point in the history
  13. MAINT: cleanup external viz windows

    For windows that are launched as a separate process, only read the param
    file once with hnn-core and pass params as necessary. This avoids the
    need for globals in most cases.
    
    Globals still exist in visrast.py -- more work needed there
    
    Also this completes using 'spec_cmap' with hnn core param files
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    41821b2 View commit details
    Browse the repository at this point in the history
  14. MAINT: add back morphology.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    e6eeef6 View commit details
    Browse the repository at this point in the history
  15. MAINT: spikefn.py remove unused function

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    2f829dc View commit details
    Browse the repository at this point in the history
  16. MAINT: function to write legacy param file

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    46c04d7 View commit details
    Browse the repository at this point in the history
  17. MAINT: simplify simdat.lsimdat and simdat.optdat

    Make these a list of dictionaries instead of a list of tuples
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    902457a View commit details
    Browse the repository at this point in the history
  18. MAINT: pass params dict to RunSimThread

    When the user clicks the button to run a simulation, the parameters from the
    GUI are immediately saved to a file using the __str__ function of each Qt
    dialog box. Then using hnn-core.read_params(), the dictionary of parameters
    is returned. This dictionary is passed to RunSimThread for both regular
    simulations and optimization batches.
    
    The QComboBox functions are simplified and updated for the new format of
    simdat.lsimdat
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    aeb8b2c View commit details
    Browse the repository at this point in the history
  19. MAINT: handle exceptions when reading spike file

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    66363c7 View commit details
    Browse the repository at this point in the history
  20. MAINT: clean up run.py and flake8

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    d5a7f6c View commit details
    Browse the repository at this point in the history
  21. MAINT: move RunSimThread() to run.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    e3725ee View commit details
    Browse the repository at this point in the history
  22. MAINT: cleanup: remove NSG and linter fixes

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    36380b6 View commit details
    Browse the repository at this point in the history
  23. MAINT: remove mod files and hnn.cfg, conf.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    23ce29d View commit details
    Browse the repository at this point in the history
  24. MAINT: remove use of dconf, paramf, basedir

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    17a799a View commit details
    Browse the repository at this point in the history
  25. MAINT: move QRangeSlider to hnn_qtlib.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    e0a4867 View commit details
    Browse the repository at this point in the history
  26. MAINT: remove model visualization code

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    1e54116 View commit details
    Browse the repository at this point in the history
  27. MAINT: move evoked Qt dialog code to qt_evoked.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    75cdfd1 View commit details
    Browse the repository at this point in the history
  28. MAINT: reorganize as hnn package

    This is a large commit, with the major changes:
    
    1. hnn is now a proper module. code is in the directory hnn, there is a setup.py,
       hnn/__init__.py, and relative imports are used
    2. installation instructions were updated to complete the shift to pip install
       NEURON except for windows.
    3. Travis CI is updated to install NEURON, but tests have not been migrated
       yet (they will fail)
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    08003f3 View commit details
    Browse the repository at this point in the history
  29. TST: cleanup testing after hnn-core switch

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    1543161 View commit details
    Browse the repository at this point in the history
  30. ENH: option to use conda or pip for hnn-ubuntu.sh

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    5a247d3 View commit details
    Browse the repository at this point in the history
  31. TST: keep handles of GUI dialog boxes for testing

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    b6c446e View commit details
    Browse the repository at this point in the history
  32. TST: use pytest-qt for testing GUI

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    4082290 View commit details
    Browse the repository at this point in the history
  33. MAINT: flake8 progress on hnn_qt5.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    39ae2c3 View commit details
    Browse the repository at this point in the history
  34. MAINT: flake8 run.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    46834d3 View commit details
    Browse the repository at this point in the history
  35. MAINT: remove use of catchall except blocks

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    4dfb704 View commit details
    Browse the repository at this point in the history
  36. MAINT: fixed AttributeError uncovered by removing excepts

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    f932d32 View commit details
    Browse the repository at this point in the history
  37. TST: no longer running regular python hnn.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    bacce95 View commit details
    Browse the repository at this point in the history
  38. TST: tweaks to Travis build

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    79fbb64 View commit details
    Browse the repository at this point in the history
  39. MAINT: removing linux uninstall scripts

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    e1c0683 View commit details
    Browse the repository at this point in the history
  40. MAINT: update setup.py to include .params

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    a72e7a9 View commit details
    Browse the repository at this point in the history
  41. MAINT: remove NEURON+hnn-core from enviornment.yml

    NEURON doesn't have a standard pip installation that will work
    for Winodws yet. Until then, we cannot install hnn-core
    using the default dependencies, which might pull in an incorrect
    version of NEURON.
    
    This makes the conda install two steps: 'conda create' and 'pip install'
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    2f3eca3 View commit details
    Browse the repository at this point in the history
  42. MAINT: start using Python 3.8 in environment.yml

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    3db313b View commit details
    Browse the repository at this point in the history
  43. TST: disable WSL CI while msys2 server is down

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    3e0c99f View commit details
    Browse the repository at this point in the history
  44. TST: Travis fixes after installer change

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    a784772 View commit details
    Browse the repository at this point in the history
  45. TST: cleanup WSL testing scripts

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    a1cdf8f View commit details
    Browse the repository at this point in the history
  46. TST: flake8 for info and skip some GUI tests

    Just start counting flake8 errors and set a goal for which files
    will should be fixed. This returns zero (for now).
    
    The dialog and GUI tests aren't working well. Try again once more work
    has been done on the view*.py code.
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    7f389ed View commit details
    Browse the repository at this point in the history
  47. TST: fix WSL testing by adding VcXsrv to PATH

    Move around code that creates a new user with a space "test user"
    to setup-travis-windows.sh run running py.test as a different user.
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    a6e856c View commit details
    Browse the repository at this point in the history
  48. TST: run-pytest.sh gets run by all OSes

    Renamed from run-pytest-wsl.sh
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    54431f2 View commit details
    Browse the repository at this point in the history
  49. MAINT: create param dir before writing

    Also use params['sim_prefix'] instead of the QLineEdit text field
    
    Also print a message to the console when the params can't be loaded
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    bc70b4e View commit details
    Browse the repository at this point in the history
  50. TST: fix up test_hnn_compare and add back test_gui

    disable some tests on windows
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    094cdc2 View commit details
    Browse the repository at this point in the history
  51. TST: fix msys2 install for WSL

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    d064d66 View commit details
    Browse the repository at this point in the history
  52. TST: fix msys2 install for WSL

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    7b0a567 View commit details
    Browse the repository at this point in the history
  53. TST: Give up launching VcXsrv for WSL

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    3c4cc76 View commit details
    Browse the repository at this point in the history
  54. MAINT: add back sim status printing to GUI

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    cf6e854 View commit details
    Browse the repository at this point in the history
  55. MAINT: turn simdat into SimData class

    This replaces the use of global variables for storing simulation
    data.
    
    simdat.py is now flake8 compliant
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    e52a7b9 View commit details
    Browse the repository at this point in the history
  56. MAINT: placeholders for tooltips

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    03edfb5 View commit details
    Browse the repository at this point in the history
  57. MAINT: reimplement saving figures

    Large change that refactors plotting functions in simdat.py
    to reuse code when plotting in the GUI and when creating a
    plot to save to a .png.
    
    Only two types of figures are saved: dpl and spec. Other figures
    can be added in the future. Another limitation is displaying
    poisson inputs along with evprox and evdist; it's not supported
    right now.
    
    The spectrograms are configured to cut of the first 50ms to
    avoid edge effects. This produces not so visually pleasing figures
    when saving. In the GUI, the dipole also loses the first 50ms!
    A better way of choosing the time range for the spectograms needs
    to be devices.
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    ab7ba1c View commit details
    Browse the repository at this point in the history
  58. MAINT: remove unused code in specfn.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    9beba7f View commit details
    Browse the repository at this point in the history
  59. MAINT: pass results from sim in memory

    Send a signal with the results of a simulation back to the main thread
    for storing in the SimData structure in memory. Avoid write/read
    cycles with simulation data.
    
    Fixed a bug in specfn.py that wrote the spec files multiple times
    unnecessarily!
    
    Flake8 changes to hnn_qt5.py
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    76f52ef View commit details
    Browse the repository at this point in the history
  60. MAINT: use hnn-core data structures

    Instead of reading files the old way with np.loadtxt(), use read_* functions
    from hnn_core to load data into objects. Reduce the number of file reads by
    storing objects in memory until they are used for plotting.
    
    DEP: no longer write spk.txt and rawspec.txt
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    6967665 View commit details
    Browse the repository at this point in the history
  61. TST: enable flake8 checking

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    79a7388 View commit details
    Browse the repository at this point in the history
  62. ENH: handle SIMCanvas exceptions gracefully

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    9757c1a View commit details
    Browse the repository at this point in the history
  63. MAINT: working dipole and spec viewers

    Update visdpole.py and visspec.py to displays windows within the main
    Qt application instead of starting a separate process.
    
    Fixes pep8 errors in modified files (except hnn_qt5.py and paramrw.py)
    
    TODO items:
     - Read dipole and spec data from memory instead of from disk
     - Revisit the case when canvas is initialized multiple times.
       Make sure there isn't a memory leak.
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    9fe8222 View commit details
    Browse the repository at this point in the history
  64. MAINT: pass data to view windows

    Pass sim_data to the viewer dialog windows instead of reading
    dpls from disk again.
    
    Also prepare visrast.py for running in the main Qt app.
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    90473f7 View commit details
    Browse the repository at this point in the history
  65. MAINT: fix spike viewer window

    Also cleanup code for pep8
    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    6dd4c7b View commit details
    Browse the repository at this point in the history
  66. MAINT: fix spectrogram viewer for multiple trials

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    1114cb5 View commit details
    Browse the repository at this point in the history
  67. MAINT: pep8 visrast.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    7415dcf View commit details
    Browse the repository at this point in the history
  68. MAINT: fix reinit issues with DatViewGUI

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    9e6ee6f View commit details
    Browse the repository at this point in the history
  69. MAINT: pep8 run.py

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    968806e View commit details
    Browse the repository at this point in the history
  70. MAINT: refactor spec plotting

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    3f58605 View commit details
    Browse the repository at this point in the history
  71. MAINT: fix PSD viewer

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    fae9af1 View commit details
    Browse the repository at this point in the history
  72. fix postproc and add default drives to Network

    cjayb authored and Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    923e1c3 View commit details
    Browse the repository at this point in the history
  73. FIX duplicate normalisation and unit conversion (DUH)

    cjayb authored and Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    b701efb View commit details
    Browse the repository at this point in the history
  74. MAINT: update for hnn-core dpl plot API

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    71a701c View commit details
    Browse the repository at this point in the history
  75. Misc improvements

    jasmainak committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    974e185 View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    d101274 View commit details
    Browse the repository at this point in the history
  77. Merge pull request #15 from jasmainak/hnn_core_cosmits

    MRG hnn_core integration improvements in code
    blakecaldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    5a9652c View commit details
    Browse the repository at this point in the history
  78. MAINT: flake8

    Blake Caldwell committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    a4397ed View commit details
    Browse the repository at this point in the history
  79. FIX import

    jasmainak committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    740e91c View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2021

  1. MAINT: assign random label when adding subplots

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    da0fb66 View commit details
    Browse the repository at this point in the history
  2. MAINT: change parameter save_vsoma to record_vsoma

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    0d51284 View commit details
    Browse the repository at this point in the history
  3. MAINT: fix somatic voltage plotting for hnn-core

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    ed6088b View commit details
    Browse the repository at this point in the history
  4. Merge branch 'fix_import' of https://github.com/jasmainak/hnn into ja…

    …smainak-fix_import
    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    d63a0ff View commit details
    Browse the repository at this point in the history
  5. Merge branch 'jasmainak-fix_import' into hnn_core_v2

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    43ddf2c View commit details
    Browse the repository at this point in the history
  6. MAINT: ensure that N_trials is never 0

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    2753928 View commit details
    Browse the repository at this point in the history
  7. MAINT: cleanup DataViewGUI inheritance

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    28b97cd View commit details
    Browse the repository at this point in the history
  8. MAINT: cleanup signals for RunSimThread

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    eceb016 View commit details
    Browse the repository at this point in the history
  9. MAINT: cleanup simdat dipole plotting

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    9eade35 View commit details
    Browse the repository at this point in the history
  10. MAINT: rename simdat.py to simdata.py

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    9ec46b2 View commit details
    Browse the repository at this point in the history
  11. MAINT: hnn_qt5.py -> qt_main.py

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    77954e5 View commit details
    Browse the repository at this point in the history
  12. MAINT: flake8

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    c50fd58 View commit details
    Browse the repository at this point in the history
  13. MAINT: match input histograms xlim to spec plot

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    b33c744 View commit details
    Browse the repository at this point in the history
  14. BUG: make NumCores persistent while GUI is running

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    12246ea View commit details
    Browse the repository at this point in the history
  15. MAINT: flake8

    Blake Caldwell committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    046e729 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2021

  1. ENH: legacy_param_str_dict for reading GUI params

    Blake Caldwell committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    f863423 View commit details
    Browse the repository at this point in the history
  2. MAINT: clean up sim_data plotting

    Blake Caldwell committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    9e61c26 View commit details
    Browse the repository at this point in the history
  3. MAINT: separate updating GUI param and save file

    Blake Caldwell committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    6820190 View commit details
    Browse the repository at this point in the history
  4. MAINT: optimization works after hnn-core integrtin

    Blake Caldwell committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    a51ec1c View commit details
    Browse the repository at this point in the history
  5. Flake8

    jasmainak committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    6eb5ad9 View commit details
    Browse the repository at this point in the history
  6. More flake8

    jasmainak committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    66cf767 View commit details
    Browse the repository at this point in the history
  7. Don't ignore flake8

    jasmainak committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    829b719 View commit details
    Browse the repository at this point in the history
  8. Run autopep8

    jasmainak committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    be3dc06 View commit details
    Browse the repository at this point in the history
  9. More pep8

    jasmainak committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    6476f12 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    0dae344 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #18 from jasmainak/flake8

    MRG: Flake8
    blakecaldwell committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    cadca03 View commit details
    Browse the repository at this point in the history
  12. MAINT: update install scripts

    Blake Caldwell committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    17581d7 View commit details
    Browse the repository at this point in the history
  13. TST: udpate tests after integration

    Blake Caldwell committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    bd37ef2 View commit details
    Browse the repository at this point in the history
  14. MAINT: rename vis*.py files to qt_*.py

    Blake Caldwell committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    99fdc8f View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2021

  1. MAINT: synchronization improvements with optim.

    Blake Caldwell committed Mar 21, 2021
    Configuration menu
    Copy the full SHA
    1d8fdfa View commit details
    Browse the repository at this point in the history
  2. BUG: missing key in updating opt_data

    Blake Caldwell committed Mar 21, 2021
    Configuration menu
    Copy the full SHA
    05b954f View commit details
    Browse the repository at this point in the history
  3. MAINT: wait to update installation scripts

    Blake Caldwell committed Mar 21, 2021
    Configuration menu
    Copy the full SHA
    d95319e View commit details
    Browse the repository at this point in the history