Difference between revisions of "AnyWave:CLI ICA"

From WikiMEG
Jump to: navigation, search
(Created page with "As selected implies, bedbugs live in mattresses and sofa. These insects go after their host's blood, will be warm-blooded animals including us humans. Feeding time is at night...")
 
(using json file)
 
(33 intermediate revisions by one user not shown)
Line 1: Line 1:
As selected implies, bedbugs live in mattresses and sofa. These insects go after their host's blood, will be warm-blooded animals including us humans. Feeding time is at night when they don't be annoyed. Bedbug bites are pink to red and flat or raised lesions which itch and burn. Ought to you get bitten, the best treatment since applying topical corticosteroids. It may take a few days to weeks as the bites disappear.<br><br>Clean cooking utensils like microwave ovens and coffee locations, spray them with water and wipe clean by utilizing a dry clean towel. Along with a disinfected spray to the toilet exterior and lavatory concrete. Wipe the glass fixtures and mirrors with a glass cleaner solution.<br><br>Carpeting might go wall-to-wall and will definitely be tough to change. If, all on a sudden, you choose you aren't happy with the colour, or fantastic change your furniture, it's a lot to be able to make the transformation having a rug in order to have to tear out the floor boards and change it out. A goat skin rug or hide rug can be readily adaptable to your whims, fancies, and decorating ideas. Also, it is less expensive than most certainly don't purchasing a comprehensive carpet.<br><br>This is one among the most commonly seen uses for this baking dust. The baking powder has tremendous cleaning powers. It may possibly be used to completely clean various materials. However, the best places to clean and shine with the baking powder are the stainless steel sink and the ceramic tiles and fixtures.<br><br>Once you have completed with the exterior of your car, it's time for check the within. vacum the interior a lot. If there are stains to your upholstery possibly carpet, you can use a quality carpet and upholstery shampoo to clean the rooms. Wash the windshield inside and out and clean all vinyl having a vinyl cleaner and protectant as quite.<br><br>Computer experts claim it is possible to create a car, using modern technology, to every thing K.I.T.T. have the ability to. BUT (and this is often a BIG "BUT")...that vehicle wasnt able to look these kinds of sleek, black Trans Am named T.I.T.T. It would have pertaining to being a gigantic truck, with extremely thick, very heavy, steel plating, reinforced tires, super shocks and simply a jet engine the actual hood. "Most of T.I.T.T.'s features are just electronic wizardry that are being done or developed, if you'd like to the particular money," says Ford engineer Terry Thiel. "The base line is it is really possible." Feasible to...just not very wonderful!<br><br>Just recently, I were problem using a third party site. Well, one member of a forum that I attend PM'd me to permit me recognize that he had personally contacted the site on my behalf to allow them be aware that what experienced done was wrong and directed them to a thread about the incident. Why did this member executed? Well, I'd like to think it is because of something I tried for him, though for that life of me, Not able to think of what it turned out.<br><br>Most computers and network components are created much much better in the past. However, you must take the environment in consideration when designing your 'network'. DO NOT TAKE A CHANCE! Need your network to work efficiently and don't want it to fail. Doing the right the first time will prevent years  [http://ronaldosrposts.tumblr.com/post/92446001558/system-places-of-system-chambers vacuum chamber] of headaches.
+
=Arguments description for plugin ICA=
 +
plugin name: '''ica'''<br/>
 +
 
 +
{|
 +
! style="text-align:left;"| argument
 +
! requirement
 +
! description
 +
|-
 +
|input_file <file>
 +
|'''MANDATORY'''
 +
|common argument
 +
|-
 +
|modality <eeg,eeg,ieeg>
 +
|'''MANDATORY'''
 +
|channel modality
 +
|-
 +
|comp <value>
 +
|'''MANDATORY'''
 +
|number of components
 +
|-
 +
|hp <value>
 +
| OPTIONAL
 +
|common hp argument.
 +
|-
 +
|lp <value>
 +
| OPTIONAL
 +
|common lp argument.
 +
|-
 +
|downsampling <flag>
 +
| OPTIONAL
 +
|Downsampling data before computing. Default is false
 +
|-
 +
|infomax_extended <flag>
 +
|OPTIONAL
 +
|Use the extended option for Infomax. Default is false.
 +
|-
 +
|skip_bad <flag>
 +
|OPTIONAL
 +
|Skip bad channels. Default is true.
 +
|-
 +
|skip_markers <marker name>
 +
|OPTIONAL
 +
|common argument. ICA will skip all the data sections marked by the specified marker.
 +
|-
 +
|use_markers <marker name>
 +
|OPTIONAL
 +
|common argument. ICA will only compute on data sections marked by the specified marker.
 +
|-
 +
|output_dir <dir>
 +
|OPTIONAL
 +
|common argument. The result file will be placed in the specified directory path.
 +
|-
 +
|output_prefix <string>
 +
|OPTIONAL
 +
|common argument. The result file will be prefixed using the specified string.
 +
|}
 +
 
 +
=Examples=
 +
run ica on meg data, just 70 components and filtering data in the 1-100Hz band.<br>
 +
<syntaxhighlight lang='bash'>
 +
anywave --run ica --input_file d:\data\meg\megdata.meg --modality meg --comp 70 --hp 1 --lp 100
 +
</syntaxhighlight>
 +
run with extended flag and output result to a directory:<br/>
 +
<syntaxhighlight lang='bash'>
 +
anywave --run ica --input_file d:\data\meg\megdata.meg --modality meg --comp 70 --hp 1 --lp 100 --infomax_extended true --output_dir d:\results
 +
</syntaxhighlight>
 +
=using json file=
 +
Sometimes it makes sense to group the plugin's parameters in a json file for further re-use in a batch loop.<br/>
 +
A JSON file also offers the capability to specify more than one value for some arguments like skip_markers, use markers.<br/>
 +
Example of processing while skipping several artifacts parts of the data file:<br/>
 +
json param.json:<br/>
 +
<syntaxhighlight lang='java'>
 +
{
 +
"plugin" : "ica",
 +
"modality" : "meg",
 +
"comp" : 70,
 +
"skip_markers" : ["artefacts", "bad", "rejected"]
 +
}
 +
</syntaxhighlight>
 +
Then the command:<br/>
 +
<syntaxhighlight lang='bash'>
 +
anywave --run param.json --input_file d:\data\meeg\data.meg --hp 1 --lp 100
 +
</syntaxhighlight>

Latest revision as of 16:48, 14 April 2020

Arguments description for plugin ICA

plugin name: ica

argument requirement description
input_file <file> MANDATORY common argument
modality <eeg,eeg,ieeg> MANDATORY channel modality
comp <value> MANDATORY number of components
hp <value> OPTIONAL common hp argument.
lp <value> OPTIONAL common lp argument.
downsampling <flag> OPTIONAL Downsampling data before computing. Default is false
infomax_extended <flag> OPTIONAL Use the extended option for Infomax. Default is false.
skip_bad <flag> OPTIONAL Skip bad channels. Default is true.
skip_markers <marker name> OPTIONAL common argument. ICA will skip all the data sections marked by the specified marker.
use_markers <marker name> OPTIONAL common argument. ICA will only compute on data sections marked by the specified marker.
output_dir <dir> OPTIONAL common argument. The result file will be placed in the specified directory path.
output_prefix <string> OPTIONAL common argument. The result file will be prefixed using the specified string.

Examples

run ica on meg data, just 70 components and filtering data in the 1-100Hz band.

anywave --run ica --input_file d:\data\meg\megdata.meg --modality meg --comp 70 --hp 1 --lp 100

run with extended flag and output result to a directory:

anywave --run ica --input_file d:\data\meg\megdata.meg --modality meg --comp 70 --hp 1 --lp 100 --infomax_extended true --output_dir d:\results

using json file

Sometimes it makes sense to group the plugin's parameters in a json file for further re-use in a batch loop.
A JSON file also offers the capability to specify more than one value for some arguments like skip_markers, use markers.
Example of processing while skipping several artifacts parts of the data file:
json param.json:

{
"plugin" : "ica",
"modality" : "meg",
"comp" : 70,
"skip_markers" : ["artefacts", "bad", "rejected"]
}

Then the command:

anywave --run param.json --input_file d:\data\meeg\data.meg --hp 1 --lp 100