Markopy
Utilizing Markov Models for brute forcing attacks
|
Extension of Python.Markopy.Base.BaseCLI for Markov::API::MarkovPasswords. More...
Public Member Functions | |
def | __init__ (self, bool add_help=True) |
initialize base CLI More... | |
def | add_arguments (self) |
def | help (self) |
def | help (self) |
def | parse (self) |
def | parse (self) |
def | init_post_arguments (self) |
def | init_post_arguments (self) |
def | parse_arguments (self) |
def | parse_arguments (self) |
def | import_model (self, str filename) |
Import a model file. More... | |
def | import_model (self, str filename) |
Import a model file. More... | |
def | train (self, str dataset, str seperator, str output, bool output_forced=False, bool bulk=False) |
Train a model via CLI parameters. More... | |
def | train (self, str dataset, str seperator, str output, bool output_forced=False, bool bulk=False) |
Train a model via CLI parameters. More... | |
def | export (self, str filename) |
Export model to a file. More... | |
def | export (self, str filename) |
Export model to a file. More... | |
def | generate (self, str wordlist, bool bulk=False) |
Generate strings from the model. More... | |
def | generate (self, str wordlist, bool bulk=False) |
Generate strings from the model. More... | |
def | process (self) |
Process parameters for operation. More... | |
def | process (self) |
Process parameters for operation. More... | |
def | Import (str filename) |
bool | Import (std::ifstream *) |
Import a file to construct the model. More... | |
bool | Import (const char *filename) |
Open a file to import with filename, and call bool Model::Import with std::ifstream. More... | |
def | Export (str filename) |
bool | Export (std::ofstream *) |
Export a file of the model. More... | |
bool | Export (const char *filename) |
Open a file to export with filename, and call bool Model::Export with std::ofstream. More... | |
def | Train (str dataset, str seperator, int threads) |
void | Train (const char *datasetFileName, char delimiter, int threads) |
Train the model with the dataset file. More... | |
def | Generate (int count, str wordlist, int minlen, int maxlen, int threads) |
void | Generate (unsigned long int n, const char *wordlistFileName, int minLen=6, int maxLen=12, int threads=20) |
Call Markov::Model::RandomWalk n times, and collect output. More... | |
std::ifstream * | OpenDatasetFile (const char *filename) |
Open dataset file and return the ifstream pointer. More... | |
std::ofstream * | Save (const char *filename) |
Export model to file. More... | |
void | Buff (const char *str, double multiplier, bool bDontAdjustSelfLoops=true, bool bDontAdjustExtendedLoops=false) |
Buff expression of some characters in the model. More... | |
char * | RandomWalk (Markov::Random::RandomEngine *randomEngine, int minSetting, int maxSetting, char *buffer) |
Do a random walk on this model. More... | |
void | AdjustEdge (const char *payload, long int occurrence) |
Adjust the model with a single string. More... | |
Node< char > * | StarterNode () |
Return starter Node. More... | |
std::vector< Edge< char > * > * | Edges () |
Return a vector of all the edges in the model. More... | |
std::map< char, Node< char > * > * | Nodes () |
Return starter Node. More... | |
void | OptimizeEdgeOrder () |
Sort edges of all nodes in the model ordered by edge weights. More... | |
Static Public Member Functions | |
def | check_import_path (str filename) |
check import path for validity More... | |
def | check_import_path (str filename) |
check import path for validity More... | |
def | check_corpus_path (str filename) |
check import path for validity More... | |
def | check_corpus_path (str filename) |
check import path for validity More... | |
def | check_export_path (str filename) |
check import path for validity More... | |
def | check_export_path (str filename) |
check import path for validity More... | |
Public Attributes | |
model | |
parser | |
parser | |
print_help | |
print_help | |
args | |
args | |
Private Member Functions | |
def | _generate (self, wordlist) |
void | TrainThread (Markov::API::Concurrency::ThreadSharedListHandler *listhandler, char delimiter) |
A single thread invoked by the Train function. More... | |
void | GenerateThread (std::mutex *outputLock, unsigned long int n, std::ofstream *wordlist, int minLen, int maxLen) |
A single thread invoked by the Generate function. More... | |
Private Attributes | |
std::ifstream * | datasetFile |
std::ofstream * | modelSavefile |
Dataset file input of our system More... | |
std::ofstream * | outputFile |
File to save model of our system More... | |
std::map< char, Node< char > * > | nodes |
Map LeftNode is the Nodes NodeValue Map RightNode is the node pointer. More... | |
Node< char > * | starterNode |
Starter Node of this model. More... | |
std::vector< Edge< char > * > | edges |
A list of all edges in this model. More... | |
Extension of Python.Markopy.Base.BaseCLI for Markov::API::MarkovPasswords.
adds -st/–stdout arguement to the command line.
def Python.Markopy.MarkovPasswordsCLI.__init__ | ( | self, | |
bool | add_help = True |
||
) |
initialize base CLI
add_help | decide to overload the help function or not |
Reimplemented from Python.Markopy.BaseCLI.
|
private |
Definition at line 31 of file mp.py.
References Python.CudaMarkopy.CudaMarkopyCLI.args, Python.Markopy.BaseCLI.args, Python.Markopy.MarkopyCLI.args, Python.Markopy.MarkovModel.Generate(), Python.CudaMarkopy.CudaModelMatrixCLI.model, Python.Markopy.BaseCLI.model, Python.Markopy.ModelMatrixCLI.model, Python.Markopy.MarkovPasswordsCLI.model, and Markov::GUI::MarkovPasswordsGUI.model().
Referenced by Python.Markopy.BaseCLI.generate().
|
inherited |
Reimplemented from Python.Markopy.BaseCLI.
Reimplemented in Python.Markopy.MarkopyCLI.
Definition at line 282 of file base.py.
References Python.Markopy.BaseCLI.parser.
Referenced by Python.Markopy.BaseCLI.parse(), and Python.Markopy.MarkopyCLI.parse().
|
inherited |
Adjust the model with a single string.
Start from the starter node, and for each character, AdjustEdge the edge EdgeWeight from current node to the next, until NULL character is reached.
Then, update the edge EdgeWeight from current node, to the terminator node.
This function is used for training purposes, as it can be used for adjusting the model with each line of the corpus file.
Example Use: Create an empty model and train it with string: "testdata"
string | - String that is passed from the training, and will be used to AdjustEdge the model with |
occurrence | - Occurrence of this string. |
Definition at line 109 of file model.h.
|
inherited |
Buff expression of some characters in the model.
str | A string containing all the characters to be buffed |
multiplier | A constant value to buff the nodes with. |
bDontAdjustSelfEdges | Do not adjust weights if target node is same as source node |
bDontAdjustExtendedLoops | Do not adjust if both source and target nodes are in first parameter |
Definition at line 153 of file markovPasswords.cpp.
References Markov::Edge< NodeStorageType >::AdjustEdge(), Markov::Node< storageType >::Edges(), Markov::Edge< NodeStorageType >::EdgeWeight(), Markov::Model< NodeStorageType >::Nodes(), and Markov::Model< NodeStorageType >::OptimizeEdgeOrder().
Referenced by main().
|
staticinherited |
check import path for validity
filename | filename to check |
Definition at line 181 of file base.py.
Referenced by Python.Markopy.BaseCLI.train().
|
staticinherited |
check import path for validity
filename | filename to check |
Definition at line 181 of file base.py.
Referenced by Python.Markopy.BaseCLI.train().
|
staticinherited |
check import path for validity
filename | filename to check |
Definition at line 192 of file base.py.
Referenced by Python.Markopy.BaseCLI.train().
|
staticinherited |
check import path for validity
filename | filename to check |
Definition at line 192 of file base.py.
Referenced by Python.Markopy.BaseCLI.train().
|
staticinherited |
check import path for validity
filename | filename to check |
Definition at line 169 of file base.py.
Referenced by Python.Markopy.BaseCLI.import_model().
|
staticinherited |
check import path for validity
filename | filename to check |
Definition at line 169 of file base.py.
Referenced by Python.Markopy.BaseCLI.import_model().
|
inlineinherited |
|
inherited |
Open a file to export with filename, and call bool Model::Export with std::ofstream.
Example Use: Export file to filename
Definition at line 166 of file model.h.
|
inherited |
Export model to a file.
filename | filename to export to |
Definition at line 138 of file base.py.
References Python.CudaMarkopy.CudaModelMatrixCLI.model, Python.Markopy.BaseCLI.model, Python.Markopy.ModelMatrixCLI.model, Python.Markopy.MarkovPasswordsCLI.model, and Markov::GUI::MarkovPasswordsGUI.model().
Referenced by Python.Markopy.BaseCLI.train().
|
inherited |
Export model to a file.
filename | filename to export to |
Definition at line 138 of file base.py.
References Python.CudaMarkopy.CudaModelMatrixCLI.model, Python.Markopy.BaseCLI.model, Python.Markopy.ModelMatrixCLI.model, Python.Markopy.MarkovPasswordsCLI.model, and Markov::GUI::MarkovPasswordsGUI.model().
Referenced by Python.Markopy.BaseCLI.train().
|
inherited |
Export a file of the model.
File contains a list of edges. Format is: Left_repr;EdgeWeight;right_repr. For more information on the format, check out the project wiki or github readme.
Iterate over this vertices, and their edges, and write them to file.
Example Use: Export file to ofstream
Definition at line 155 of file model.h.
|
inherited |
|
inherited |
Definition at line 34 of file mm.py.
Referenced by Python.Markopy.MarkovPasswordsCLI._generate().
|
inherited |
Generate strings from the model.
model | model instance |
wordlist | wordlist filename |
bulk | marks bulk operation with directories |
Definition at line 145 of file base.py.
References Python.CudaMarkopy.CudaModelMatrixCLI._generate(), Python.Markopy.BaseCLI._generate(), Python.Markopy.ModelMatrixCLI._generate(), Python.Markopy.MarkovPasswordsCLI._generate(), Python.CudaMarkopy.CudaMarkopyCLI.args, Python.Markopy.BaseCLI.args, and Python.Markopy.MarkopyCLI.args.
Referenced by Python.Markopy.BaseCLI.process().
|
inherited |
Generate strings from the model.
model | model instance |
wordlist | wordlist filename |
bulk | marks bulk operation with directories |
Definition at line 145 of file base.py.
References Python.CudaMarkopy.CudaModelMatrixCLI._generate(), Python.Markopy.BaseCLI._generate(), Python.Markopy.ModelMatrixCLI._generate(), Python.Markopy.MarkovPasswordsCLI._generate(), Python.CudaMarkopy.CudaMarkopyCLI.args, Python.Markopy.BaseCLI.args, and Python.Markopy.MarkopyCLI.args.
Referenced by Python.Markopy.BaseCLI.process().
|
inherited |
Call Markov::Model::RandomWalk n times, and collect output.
Generate from model and write results to a file. a much more performance-optimized method. FastRandomWalk will reduce the runtime by %96.5 on average.
n | - Number of passwords to generate. |
wordlistFileName | - Filename to write to |
minLen | - Minimum password length to generate |
maxLen | - Maximum password length to generate |
threads | - number of OS threads to spawn |
Definition at line 118 of file markovPasswords.cpp.
References Markov::API::MarkovPasswords::GenerateThread().
Referenced by Markov::Markopy::BOOST_PYTHON_MODULE(), and Markov::GUI::Generate::generation().
|
privateinherited |
A single thread invoked by the Generate function.
DEPRECATED: See Markov::API::MatrixModel::FastRandomWalkThread for more information. This has been replaced with a much more performance-optimized method. FastRandomWalk will reduce the runtime by %96.5 on average.
outputLock | - shared mutex lock to lock during output operation. Prevents race condition on write. |
n | number of lines to be generated by this thread |
wordlist | wordlistfile |
minLen | - Minimum password length to generate |
maxLen | - Maximum password length to generate |
Definition at line 140 of file markovPasswords.cpp.
References Markov::Model< NodeStorageType >::RandomWalk().
Referenced by Markov::API::MarkovPasswords::Generate().
|
inherited |
Reimplemented in Python.Markopy.MarkopyCLI, and Python.CudaMarkopy.CudaMarkopyCLI.
Definition at line 51 of file base.py.
References Python.Markopy.BaseCLI.print_help.
Referenced by Python.Markopy.MarkopyCLI.add_arguments().
|
inherited |
Reimplemented in Python.Markopy.MarkopyCLI, and Python.CudaMarkopy.CudaMarkopyCLI.
Definition at line 51 of file base.py.
References Python.Markopy.BaseCLI.print_help.
Referenced by Python.Markopy.MarkopyCLI.add_arguments().
|
inherited |
Open a file to import with filename, and call bool Model::Import with std::ifstream.
Example Use: Import a file with filename
Definition at line 137 of file model.h.
|
inherited |
Import a file to construct the model.
File contains a list of edges. For more info on the file format, check out the wiki and github readme pages. Format is: Left_repr;EdgeWeight;right_repr
Iterate over this list, and construct nodes and edges accordingly.
Example Use: Import a file from ifstream
Definition at line 126 of file model.h.
|
inherited |
|
inherited |
Import a model file.
filename | filename to import |
Definition at line 77 of file base.py.
References Python.Markopy.BaseCLI.check_import_path(), Python.CudaMarkopy.CudaModelMatrixCLI.model, Python.Markopy.BaseCLI.model, Python.Markopy.ModelMatrixCLI.model, Python.Markopy.MarkovPasswordsCLI.model, and Markov::GUI::MarkovPasswordsGUI.model().
Referenced by Python.Markopy.BaseCLI.process().
|
inherited |
Import a model file.
filename | filename to import |
Definition at line 77 of file base.py.
References Python.Markopy.BaseCLI.check_import_path(), Python.CudaMarkopy.CudaModelMatrixCLI.model, Python.Markopy.BaseCLI.model, Python.Markopy.ModelMatrixCLI.model, Python.Markopy.MarkovPasswordsCLI.model, and Markov::GUI::MarkovPasswordsGUI.model().
Referenced by Python.Markopy.BaseCLI.process().
|
inherited |
Reimplemented in Python.Markopy.ModelMatrixCLI, Python.Markopy.MarkopyCLI, Python.CudaMarkopy.CudaModelMatrixCLI, and Python.Markopy.MarkopyCLI.
Definition at line 62 of file base.py.
References Python.CudaMarkopy.CudaMarkopyCLI.args, Python.Markopy.BaseCLI.args, and Python.Markopy.MarkopyCLI.args.
Referenced by Python.Markopy.BaseCLI.parse(), and Python.Markopy.MarkopyCLI.parse().
|
inherited |
Reimplemented in Python.Markopy.ModelMatrixCLI, Python.Markopy.MarkopyCLI, Python.CudaMarkopy.CudaModelMatrixCLI, and Python.Markopy.MarkopyCLI.
Definition at line 62 of file base.py.
References Python.CudaMarkopy.CudaMarkopyCLI.args, Python.Markopy.BaseCLI.args, and Python.Markopy.MarkopyCLI.args.
Referenced by Python.Markopy.BaseCLI.parse(), and Python.Markopy.MarkopyCLI.parse().
|
inlineinherited |
|
inherited |
Open dataset file and return the ifstream pointer.
filename | - Filename to open |
Definition at line 51 of file markovPasswords.cpp.
References Markov::Model< NodeStorageType >::Import().
|
inherited |
|
inherited |
Reimplemented in Python.Markopy.MarkopyCLI, and Python.CudaMarkopy.CudaMarkopyCLI.
Definition at line 55 of file base.py.
References Python.CudaMarkopy.CudaModelMatrixCLI.add_arguments(), Python.Markopy.BaseCLI.add_arguments(), Python.Markopy.AbstractGenerationModelCLI.add_arguments(), Python.Markopy.AbstractTrainingModelCLI.add_arguments(), Python.Markopy.MarkopyCLI.add_arguments(), Python.Markopy.ModelMatrixCLI.add_arguments(), Python.CudaMarkopy.CudaModelMatrixCLI.init_post_arguments(), Python.Markopy.BaseCLI.init_post_arguments(), Python.Markopy.MarkopyCLI.init_post_arguments(), Python.Markopy.ModelMatrixCLI.init_post_arguments(), and Python.Markopy.BaseCLI.parse_arguments().
|
inherited |
Reimplemented in Python.Markopy.MarkopyCLI, and Python.CudaMarkopy.CudaMarkopyCLI.
Definition at line 55 of file base.py.
References Python.CudaMarkopy.CudaModelMatrixCLI.add_arguments(), Python.Markopy.BaseCLI.add_arguments(), Python.Markopy.AbstractGenerationModelCLI.add_arguments(), Python.Markopy.AbstractTrainingModelCLI.add_arguments(), Python.Markopy.MarkopyCLI.add_arguments(), Python.Markopy.ModelMatrixCLI.add_arguments(), Python.CudaMarkopy.CudaModelMatrixCLI.init_post_arguments(), Python.Markopy.BaseCLI.init_post_arguments(), Python.Markopy.MarkopyCLI.init_post_arguments(), Python.Markopy.ModelMatrixCLI.init_post_arguments(), and Python.Markopy.BaseCLI.parse_arguments().
|
inherited |
Definition at line 73 of file base.py.
Referenced by Python.Markopy.BaseCLI.parse(), and Python.Markopy.MarkopyCLI.parse().
|
inherited |
Definition at line 73 of file base.py.
Referenced by Python.Markopy.BaseCLI.parse(), and Python.Markopy.MarkopyCLI.parse().
|
inherited |
Process parameters for operation.
Reimplemented in Python.Markopy.MarkopyCLI.
Definition at line 202 of file base.py.
References Python.CudaMarkopy.CudaMarkopyCLI.args, Python.Markopy.BaseCLI.args, Python.Markopy.MarkopyCLI.args, Python.Markopy.BaseCLI.generate(), Python.Markopy.BaseCLI.import_model(), Markov::GUI::Generate.train(), Markov::GUI::Train.train(), and Python.Markopy.BaseCLI.train().
|
inherited |
Process parameters for operation.
Reimplemented in Python.Markopy.MarkopyCLI.
Definition at line 202 of file base.py.
References Python.CudaMarkopy.CudaMarkopyCLI.args, Python.Markopy.BaseCLI.args, Python.Markopy.MarkopyCLI.args, Python.Markopy.BaseCLI.generate(), Python.Markopy.BaseCLI.import_model(), Markov::GUI::Generate.train(), Markov::GUI::Train.train(), and Python.Markopy.BaseCLI.train().
|
inherited |
Do a random walk on this model.
Start from the starter node, on each node, invoke RandomNext using the random engine on current node, until terminator node is reached. If terminator node is reached before minimum length criateria is reached, ignore the last selection and re-invoke randomNext
If maximum length criteria is reached but final node is not, cut off the generation and proceed to the final node. This function takes Markov::Random::RandomEngine as a parameter to generate pseudo random numbers from
This library is shipped with two random engines, Marsaglia and Mersenne. While mersenne output is higher in entropy, most use cases don't really need super high entropy output, so Markov::Random::Marsaglia is preferable for better performance.
This function WILL NOT reallocate buffer. Make sure no out of bound writes are happening via maximum length criteria.
Example Use: Generate 10 lines, with 5 to 10 characters, and print the output. Use Marsaglia
randomEngine | Random Engine to use for the random walks. For examples, see Markov::Random::Mersenne and Markov::Random::Marsaglia |
minSetting | Minimum number of characters to generate |
maxSetting | Maximum number of character to generate |
buffer | buffer to write the result to |
Definition at line 86 of file model.h.
|
inherited |
Export model to file.
filename | - Export filename. |
Definition at line 106 of file markovPasswords.cpp.
References Markov::Model< NodeStorageType >::Export().
|
inlineinherited |
|
inherited |
Train the model with the dataset file.
datasetFileName | - Ifstream* to the dataset. If null, use class member |
delimiter | - a character, same as the delimiter in dataset content |
threads | - number of OS threads to spawn |
Definition at line 65 of file markovPasswords.cpp.
References intHandler(), Markov::API::Concurrency::ThreadSharedListHandler::ThreadSharedListHandler(), and Markov::API::MarkovPasswords::TrainThread().
Referenced by Markov::Markopy::BOOST_PYTHON_MODULE(), Markov::GUI::Generate::train(), Markov::GUI::Train::train(), and Markov::API::ModelMatrix::Train().
|
inherited |
Train a model via CLI parameters.
model | Model instance |
dataset | filename for the dataset |
seperator | seperator used with the dataset |
output | output filename |
output_forced | force overwrite |
bulk | marks bulk operation with directories |
Definition at line 94 of file base.py.
References Python.CudaMarkopy.CudaMarkopyCLI.args, Python.Markopy.BaseCLI.args, Python.Markopy.MarkopyCLI.args, Python.Markopy.BaseCLI.check_corpus_path(), Python.Markopy.BaseCLI.check_export_path(), Python.Markopy.BaseCLI.export(), Python.CudaMarkopy.CudaModelMatrixCLI.model, Python.Markopy.BaseCLI.model, Python.Markopy.ModelMatrixCLI.model, Python.Markopy.MarkovPasswordsCLI.model, and Markov::GUI::MarkovPasswordsGUI.model().
Referenced by Python.Markopy.BaseCLI.process().
|
inherited |
Train a model via CLI parameters.
model | Model instance |
dataset | filename for the dataset |
seperator | seperator used with the dataset |
output | output filename |
output_forced | force overwrite |
bulk | marks bulk operation with directories |
Definition at line 94 of file base.py.
References Python.CudaMarkopy.CudaMarkopyCLI.args, Python.Markopy.BaseCLI.args, Python.Markopy.MarkopyCLI.args, Python.Markopy.BaseCLI.check_corpus_path(), Python.Markopy.BaseCLI.check_export_path(), Python.Markopy.BaseCLI.export(), Python.CudaMarkopy.CudaModelMatrixCLI.model, Python.Markopy.BaseCLI.model, Python.Markopy.ModelMatrixCLI.model, Python.Markopy.MarkovPasswordsCLI.model, and Markov::GUI::MarkovPasswordsGUI.model().
Referenced by Python.Markopy.BaseCLI.process().
|
inherited |
|
privateinherited |
A single thread invoked by the Train function.
listhandler | - Listhandler class to read corpus from |
delimiter | - a character, same as the delimiter in dataset content |
Definition at line 85 of file markovPasswords.cpp.
References Markov::Model< NodeStorageType >::AdjustEdge(), keepRunning, and Markov::API::Concurrency::ThreadSharedListHandler::next().
Referenced by Markov::API::MarkovPasswords::Train().
|
inherited |
Definition at line 75 of file base.py.
Referenced by Python.CudaMarkopy.CudaModelMatrixCLI._generate(), Python.Markopy.BaseCLI._generate(), Python.Markopy.ModelMatrixCLI._generate(), Python.Markopy.MarkovPasswordsCLI._generate(), Python.Markopy.BaseCLI.generate(), Python.Markopy.MarkopyCLI.help(), Python.Markopy.BaseCLI.init_post_arguments(), Python.Markopy.MarkopyCLI.parse(), Python.CudaMarkopy.CudaMarkopyCLI.parse_fail(), Python.Markopy.BaseCLI.process(), and Python.Markopy.BaseCLI.train().
|
inherited |
Definition at line 75 of file base.py.
Referenced by Python.CudaMarkopy.CudaModelMatrixCLI._generate(), Python.Markopy.BaseCLI._generate(), Python.Markopy.ModelMatrixCLI._generate(), Python.Markopy.MarkovPasswordsCLI._generate(), Python.Markopy.BaseCLI.generate(), Python.Markopy.MarkopyCLI.help(), Python.Markopy.BaseCLI.init_post_arguments(), Python.Markopy.MarkopyCLI.parse(), Python.CudaMarkopy.CudaMarkopyCLI.parse_fail(), Python.Markopy.BaseCLI.process(), and Python.Markopy.BaseCLI.train().
|
privateinherited |
Definition at line 123 of file markovPasswords.h.
|
privateinherited |
Python.Markopy.MarkovPasswordsCLI.model |
Definition at line 29 of file mp.py.
Referenced by Python.CudaMarkopy.CudaModelMatrixCLI._generate(), Python.Markopy.BaseCLI._generate(), Python.Markopy.ModelMatrixCLI._generate(), Python.Markopy.MarkovPasswordsCLI._generate(), Python.Markopy.BaseCLI.export(), Python.Markopy.BaseCLI.import_model(), and Python.Markopy.BaseCLI.train().
|
privateinherited |
Dataset file input of our system
Definition at line 124 of file markovPasswords.h.
|
privateinherited |
|
privateinherited |
File to save model of our system
Definition at line 125 of file markovPasswords.h.
|
inherited |
Definition at line 25 of file base.py.
Referenced by Python.CudaMarkopy.CudaMarkopyCLI.__init__(), Python.CudaMarkopy.CudaModelMatrixCLI.add_arguments(), Python.Markopy.BaseCLI.add_arguments(), Python.Markopy.AbstractGenerationModelCLI.add_arguments(), Python.Markopy.AbstractTrainingModelCLI.add_arguments(), Python.Markopy.MarkopyCLI.add_arguments(), Python.Markopy.ModelMatrixCLI.add_arguments(), Python.CudaMarkopy.CudaMarkopyCLI.help(), and Python.Markopy.MarkopyCLI.help().
|
inherited |
Definition at line 25 of file base.py.
Referenced by Python.CudaMarkopy.CudaMarkopyCLI.__init__(), Python.CudaMarkopy.CudaModelMatrixCLI.add_arguments(), Python.Markopy.BaseCLI.add_arguments(), Python.Markopy.AbstractGenerationModelCLI.add_arguments(), Python.Markopy.AbstractTrainingModelCLI.add_arguments(), Python.Markopy.MarkopyCLI.add_arguments(), Python.Markopy.ModelMatrixCLI.add_arguments(), Python.CudaMarkopy.CudaMarkopyCLI.help(), and Python.Markopy.MarkopyCLI.help().
|
inherited |
Definition at line 39 of file base.py.
Referenced by Python.Markopy.BaseCLI.help(), and Python.Markopy.MarkopyCLI.help().
|
inherited |
Definition at line 39 of file base.py.
Referenced by Python.Markopy.BaseCLI.help(), and Python.Markopy.MarkopyCLI.help().
|
privateinherited |