Skip to content

Commit

Permalink
Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
yger committed Jul 17, 2019
1 parent c075cff commit 1175b38
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Release 0.8.3
* fix a bug when launching GUIs for file format without data offset
* can now work with scipy 1.3
* isolation mode is improved, now the default and leading to better performance
* reducing overclustering with the Hartigan dip-test of unimodality

=============
Release 0.8.2
Expand Down
1 change: 1 addition & 0 deletions circus/config.params
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ nclus_min = 0.005 # Min number of elements in a cluster (given in perc
nb_repeats = 3 # Number of passes used for the clustering
smart_search = True # Activate the smart search mode
sim_same_elec = 3 # Distance within clusters under which they are re-merged
dip_threshold = 0.5 # Will replace sim_same_elec in the future. Set it to 0 to keep using sim_same_elec
sensitivity = 3 # Single parameter for clustering sensitivity. The lower the more sensitive
cc_merge = 0.975 # If CC between two templates is higher, they are merged
dispersion = (5, 5) # Min and Max dispersion allowed for amplitudes [in MAD]
Expand Down
5 changes: 3 additions & 2 deletions docs_sphinx/code/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Whitening
The whitening section is::

chunk_size = 60 # Size of the data chunks [in s]
safety_time = 1 # Temporal zone around which templates are isolated [in ms]
safety_time = auto # Temporal zone around which templates are isolated [in ms]
spatial = True # Perform spatial whitening
max_elts = 10000 # Max number of events per electrode (should be compatible with nb_elts)
nb_elts = 0.8 # Fraction of max_elts that should be obtained per electrode [0-1]
Expand All @@ -116,13 +116,14 @@ The clustering section is::

extraction = median-raw # Can be either median-raw (default), median-pca, mean-pca, mean-raw, or quadratic
safety_space = True # If True, we exclude spikes in the vicinity of a selected spikes
safety_time = 1 # Temporal zone around which templates are isolated [in ms]
safety_time = auto # Temporal zone around which templates are isolated [in ms]
max_elts = 10000 # Max number of events per electrode (should be compatible with nb_elts)
nb_elts = 0.8 # Fraction of max_elts that should be obtained per electrode [0-1]
nclus_min = 0.002 # Min number of elements in a cluster (given in percentage)
nb_repeats = 3 # Number of passes used for the clustering
make_plots = # Generate sanity plots of the clustering
sim_same_elec = 3 # Distance within clusters under which they are re-merged
dip_threshold = 0.5 # Will replace sim_same_elec in the future. Set it to 0 to keep using sim_same_elec
sensitivity = 5 # The only parameter to control the cluster. The lower, the more sensitive
cc_merge = 0.975 # If CC between two templates is higher, they are merged
dispersion = (5, 5) # Min and Max dispersion allowed for amplitudes [in MAD]
Expand Down

0 comments on commit 1175b38

Please sign in to comment.