CARLsim  5.0.0
CARLsim: a GPU-accelerated SNN simulator
simple_weight_tuner.h
Go to the documentation of this file.
1 /* * Copyright (c) 2016 Regents of the University of California. All rights reserved.
2 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions
5 * are met:
6 *
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 *
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * 3. The names of its contributors may not be used to endorse or promote
15 * products derived from this software without specific prior written
16 * permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
22 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * *********************************************************************************************** *
31 * CARLsim
32 * created by: (MDR) Micah Richert, (JN) Jayram M. Nageswaran
33 * maintained by:
34 * (MA) Mike Avery <averym@uci.edu>
35 * (MB) Michael Beyeler <mbeyeler@uci.edu>,
36 * (KDC) Kristofor Carlson <kdcarlso@uci.edu>
37 * (TSC) Ting-Shuo Chou <tingshuc@uci.edu>
38 * (HK) Hirak J Kashyap <kashyaph@uci.edu>
39 *
40 * CARLsim v1.0: JM, MDR
41 * CARLsim v2.0/v2.1/v2.2: JM, MDR, MA, MB, KDC
42 * CARLsim3: MB, KDC, TSC
43 * CARLsim4: TSC, HK
44 * CARLsim5: HK, JX, KC
45 *
46 * CARLsim available from http://socsci.uci.edu/~jkrichma/CARLsim/
47 * Ver 12/31/2016
48 */
49 #ifndef _SIMPLE_WEIGHT_TUNER_H_
50 #define _SIMPLE_WEIGHT_TUNER_H_
51 
52 class CARLsim;
53 class SpikeMonitor;
54 struct RangeWeight;
55 
90 public:
107  SimpleWeightTuner(CARLsim *sim, double errorMargin=1e-3, int maxIter=100, double stepSizeFraction=0.5);
108 
116 
135  void setConnectionToTune(short int connId, double initWt=-1.0, bool adjustRange=true);
136 
154  void setTargetFiringRate(int grpId, double targetRate);
155 
174  void iterate(int runDurationMs=1000, bool printStatus=true);
175 
188  bool done(bool printMessage=false);
189 
197  void reset();
198 
199 
200 private:
201  // This class provides a pImpl for the CARLsim User API.
202  // \see https://marcmutz.wordpress.com/translated-articles/pimp-my-pimpl/
203  class Impl;
204  Impl* _impl;
205 };
206 
207 #endif
SimpleWeightTuner
Class SimpleWeightTuner.
Definition: simple_weight_tuner.h:89
RangeWeight
a range struct for synaptic weight magnitudes
Definition: carlsim_datastructures.h:312
SpikeMonitor
Class SpikeMonitor.
Definition: spike_monitor.h:120
SimpleWeightTuner::setConnectionToTune
void setConnectionToTune(short int connId, double initWt=-1.0, bool adjustRange=true)
Sets up the connection to tune.
Definition: simple_weight_tuner.cpp:305
SimpleWeightTuner::~SimpleWeightTuner
~SimpleWeightTuner()
Destructor.
Definition: simple_weight_tuner.cpp:303
SimpleWeightTuner::Impl
Private implementation of the Stopwatch Utility.
Definition: simple_weight_tuner.cpp:68
SimpleWeightTuner::setTargetFiringRate
void setTargetFiringRate(int grpId, double targetRate)
Sets up the target firing rate of a specific group.
Definition: simple_weight_tuner.cpp:308
SimpleWeightTuner::reset
void reset()
Resets the algorithm to initial conditions.
Definition: simple_weight_tuner.cpp:313
SimpleWeightTuner::SimpleWeightTuner
SimpleWeightTuner(CARLsim *sim, double errorMargin=1e-3, int maxIter=100, double stepSizeFraction=0.5)
Creates a new instance of class SimpleWeightTuner.
Definition: simple_weight_tuner.cpp:301
SimpleWeightTuner::done
bool done(bool printMessage=false)
Determines whether a termination criterion has been met.
Definition: simple_weight_tuner.cpp:312
CARLsim
CARLsim User Interface This class provides a user interface to the public sections of CARLsimCore sou...
Definition: carlsim.h:138
SimpleWeightTuner::iterate
void iterate(int runDurationMs=1000, bool printStatus=true)
Performs an iteration step of the tuning algorithm.
Definition: simple_weight_tuner.cpp:311