CoolFace
Apppublic

gofeco/support

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
api.get_modules.txt15 linesDownload Raw Back to src_en
1<h3 id='___get_modules'>get_modules</h3>2<pre>Get modules under current module (LLM: submodules)3<b>Usage:</b> @modules = get_modules($pattern, @options);4$pattern: Match pattern, can have wildcard "*", if it is empty, it is treated as "*"5@options:6    -help: Print this information7    -hier: Get all modules hierarchically8@modules: Modules list, ("module0", "module1", ...)9 10<b>Examples:</b>11 12@modules = get_modules("*TM*");  # Any hierarchical modules with TM in the name.13@modules = get_modules;          # All hierarchical modules.14@modules = get_modules("-hier"); # All hierarchical modules and sub-modules under current module.15</pre>