2215 questions found.

Page 41 / 45

The listQKBs action does not have any parameters. It is called directly to retrieve the list of all available QKBs....

The listQKBs action is part of the QKB (Quality Knowledge Base) action set, which provides actions for importing and managing QKBs....

The listQKBTokens action lists tokens for a specific definition and locale within a Quality Knowledge Base (QKB)....

It is a required parameter that specifies the name of the QKB definition for which to list tokens....

It is an optional parameter that specifies the 5-letter abbreviation for a locale in the QKB. If not specified, the default locale might be used....

This optional parameter specifies the name of the Quality Knowledge Base (QKB) to use....

The 'type' parameter specifies the type of QKB definition and can be one of the following values: "EXTRACTION", "GENDER", "MATCH", "PARSE", or "STANDARDIZATION"....

The listRegions action lists all defined regions for the S3 environment....

The syntax is: s3.listRegions ;...

The `listresults` action is used to list the saved results for a specific CAS session. When actions are executed, their results can be stored on the server. This action allows you to see a list of these saved results, which can then be managed or retrieved using other actions....

You can use the `listresults` action to display a list of all results that have been saved from the actions executed within your current session....

A common use case is to manage the results of actions that are run in batches. After running multiple actions, you can use `listresults` to see all the generated result tables and then use the `fetchresult` action to retrieve a specific result for further analysis, as shown in the 'Fetch Batched Res...

The listServOpts action displays the server options and their corresponding values....

The syntax is: configuration.listServOpts ;...

No, the listServOpts action does not require any parameters to be specified....

The listSessions action displays a list of all active sessions on the CAS server....

The action returns a result table containing details for each session, including the session name, its UUID, the user who initiated it, and its current state....

Yes, standard users can only view their own sessions. To see all sessions on the server, you must have administrative privileges....

You can execute the action using the syntax: `session.listSessions;`....

The listSessOpts action displays the session options and their corresponding session values....

No, based on the provided syntax for CASL, Lua, Python, and R, the listSessOpts action is called without any specific parameters, though it supports optional parameters for handling results and status codes....

The lmDecode action decodes recurrent neural network (RNN) scores by using a specified language model....

The 'alpha' parameter is a tunable parameter that manages the trade-off between the acoustic model and the language model. A larger alpha value gives more weight to the language model when ranking candidates. The default value is 1....

The 'beta' parameter controls the trade-off between the acoustic model and the sentence length. A larger beta value gives more weight to the length of the sentence when ranking candidate results. The default value is 0....

The 'langModelTable' parameter is used to specify the n-gram language model table required for the decoding process....

The 'maxPathSize' parameter specifies the maximum number of candidate paths to retain during the decoding process. Its default value is 100....

The 'columnMap' parameter is used to specify the labels that the score columns represent, and they must be in the same order....

The 'blankLabel' parameter specifies the string that is used to indicate a 'blank' label in the RNN scores. The default value is "_"....

The lmImport action imports an n-gram language model....

The 'table' parameter specifies the n-gram language model to be used....

The 'casOut' parameter is used for specifying output tables. For more detailed information, refer to the common casouttable parameter in the documentation appendix....

The 'labelMapTable' parameter specifies the mapping between labels used by the language model and the labels to be used in the speech-to-text system....

The loadActionSet action loads an action set for use in the current session....

The required parameter is 'actionSet', which specifies the name of the action set to be loaded....

The 'actionSet' parameter is specified as a string containing the name of the action set....

Yes, the documentation provides a specific note for Python and R clients regarding the loading of an action set, which should be consulted for details....

The audio.loadAudio action is used to load audio files from a specified path into an in-memory CAS table....

The required parameters are 'path', which specifies the location of the text file containing the list of audio files, and 'casOut', which defines the properties of the output table....

You must use the 'path' parameter to provide the path to a text file. This file must contain a list of the paths to the audio files that you want to load into the CAS table....

The 'caslib' parameter specifies the CAS library from which all the input audio files will be read. The files listed in your path file must be accessible from this caslib....

The 'casOut' parameter is a required parameter that specifies all the settings for the output table. This includes its name, the caslib where it will be stored, and other options such as compression, promotion, or whether to replace an existing table....

The optimization.loadMps action loads an MPS file string into a CAS data table. This data table is formatted in a way that can be used by other optimization solvers....

The main parameters for the loadMps action are 'casOut' to specify the output table, 'format' to define the input file format, 'maxLength' for variable/constraint name length, and 'mpsFileString' which contains the content of the MPS file....

The output data table is specified using the 'casOut' parameter, which is a dictionary containing properties like 'name' for the table name and 'caslib' for the caslib where it should be saved....

The 'format' parameter specifies whether the MPS file content is in fixed or free format. The possible values are 'FIXED' or 'FREE', with 'FIXED' being the default....

The 'mpsFileString' parameter is a string that must contain the entire contents of the MPS file that you want to load into a CAS data table....

The loadTable action is used to load a table from a caslib's data source into memory....

The 'path' parameter is a required argument that specifies the file, directory, or table name of the data source to be loaded....

Use the 'casOut' parameter. It allows you to define the settings for the output table, including its name and the caslib where it should be stored....

Yes, by setting the 'replace' sub-parameter within the 'casOut' parameter to TRUE, you can overwrite an existing table that has the same name....