sift:tutorials:command_line
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
sift:tutorials:command_line [2024/09/19 16:16] – sgranger | sift:tutorials:command_line [2025/02/06 16:33] (current) – sgranger | ||
---|---|---|---|
Line 1: | Line 1: | ||
======Batch Command Line Processing Tutorial====== | ======Batch Command Line Processing Tutorial====== | ||
- | In this tutorial we will learn how to run sift on the command line, loading | + | In this tutorial, we will guide you through running Sift on the command line. You'll learn how to load a library, |
- | to create a batch script | + | |
=====Running on Command Line===== | =====Running on Command Line===== | ||
- | - First we need to run Sift on the command line, on your keyboard press the **Windows Key + R** in the run window | + | - First, we need to run Sift via the command line. On your keyboard, press Windows Key + R, type " |
- | - Then change the directory | + | - Next, navigate |
- | - Next to launch | + | - To launch |
- | - This will open another | + | - This will open new console |
- | - In the new console | + | - In this console, load a library |
- | - Next load and run a predefined query by entering | + | - Next load and run a predefined query by entering: // |
- | - Select all signals by running //--SelectSignals// | + | - Select all signals by running // |
- | - Run a PCA with the name " | + | - Run a PCA named " |
- | - Now we will run our first round of outlier detection | + | - Now, let's perform the first round of outlier detection. Run a Local Outlier Factor |
- | - Now lets export the results of this LOF test run the command: //--ExportPCA file "Path to exported txt file" exportFormat " | + | - To export the results of this LOF test, run: // |
- | - Next we will run another LOF test, this time on workspaces: //--RunLOF grouping " | + | - Next, run another LOF test, this time on workspaces: //-RunLOF grouping " |
- | - Now export | + | - Export |
- | - Finally, | + | - Finally, save the project |
- | Now our processing is complete, we have two exports detailing group and workspace level outliers | + | Now that processing is complete, we have two exports detailing group and workspace-level outliers, along with a saved project file that excludes |
=====Batch Processing===== | =====Batch Processing===== | ||
- | Now that we have an understanding of what we want as a baseline | + | Now that we have a clear understanding of our baseline processing, |
====The Scenario==== | ====The Scenario==== | ||
- | In order to fully understand how we should | + | To effectively |
- | Lets say we are working with a baseball team, and every day at practice we get some data that needs to be processed, that data will be stored in dated folders | + | Imagine |
- | Within | + | |
====The Plan==== | ====The Plan==== | ||
- | Now that we know what we are working | + | Now that we know what we're dealing |
< | < | ||
@echo off | @echo off | ||
setlocal | setlocal | ||
+ | :: Set the target directory where the practice data is stored | ||
set " | set " | ||
+ | :: Loop through each folder (%%d) in the target directory | ||
for /D %%d in (" | for /D %%d in (" | ||
+ | | ||
+ | :: Reset the flag to check if an i3d file exists | ||
set " | set " | ||
+ | | ||
+ | :: Loop through each .i3d file in the current folder | ||
for %%f in (" | for %%f in (" | ||
+ | | ||
+ | :: If an i3d file is found, set the flag to true | ||
if exist " | if exist " | ||
set " | set " | ||
Line 43: | Line 49: | ||
) | ) | ||
| | ||
+ | :: If no i3d file was found, process the folder | ||
if not defined i3dFileFound ( | if not defined i3dFileFound ( | ||
+ | | ||
+ | :: Set the folder path that needs processing | ||
set " | set " | ||
- | " | + | |
+ | :: Run Sift with the necessary commands to process the data | ||
+ | | ||
) | ) | ||
) | ) | ||
+ | :: End the script and clean up | ||
endlocal | endlocal | ||
</ | </ | ||
====The Execution==== | ====The Execution==== | ||
- | Now that we have a script ready to go, executing our processing | + | Now that we have our script ready, |
- Open the start menu and type Task Scheduler into the search bar \\ {{: | - Open the start menu and type Task Scheduler into the search bar \\ {{: | ||
- | - Open Task Scheduler \\ {{: | + | - Open Task Scheduler |
- | - In the Task Scheduler select | + | - In Task Scheduler, select |
- | - In the popup dialog enter a meaningful name in this case we went with " | + | - In the popup dialog, enter a meaningful name (in this case, we used " |
- | - In the next step ensure daily is selected | + | - On the next screen, select **Daily** |
- | - Next select what time of day you would like the task to run, we picked | + | - Now, choose the time of day you' |
- | - In the next step ensure start a program | + | - Ensure Start a Program |
- | - Now we will browse | + | - Browse |
- | - On the final screen review and press finish | + | - On the final screen, review |
- | - Finally | + | - Lastly, |
- | Now we are finished! We have set it up so our script | + | That' |
sift/tutorials/command_line.1726762585.txt.gz · Last modified: 2024/09/19 16:16 by sgranger