Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Vergeml | 339 | 5 years ago | 3 | mit | Python | |||||
Machine Learning Environment - alpha version | ||||||||||
Yolov5 Pip | 273 | 23 | a month ago | 69 | October 16, 2023 | 2 | gpl-3.0 | Python | ||
Packaged version of ultralytics/yolov5 + many extra features | ||||||||||
Deepdash | 223 | 19 | 80 | 2 years ago | 112 | May 22, 2021 | 11 | mit | JavaScript | |
eachDeep, filterDeep, findDeep, someDeep, omitDeep, pickDeep, keysDeep etc.. Tree traversal library written in Underscore/Lodash fashion | ||||||||||
Pytorch Ddpg | 207 | 5 years ago | 2 | apache-2.0 | Python | |||||
Implementation of the Deep Deterministic Policy Gradient (DDPG) using PyTorch | ||||||||||
Pyimagesearch Cv Dl Crashcourse | 199 | 2 years ago | 6 | mit | Python | |||||
Repository for PyImageSearch Crash Course on Computer Vision and Deep Learning | ||||||||||
Ronin | 173 | 10 months ago | 7 | gpl-3.0 | Python | |||||
RoNIN: Robust Neural Inertial Navigation in the Wild | ||||||||||
Keras_compressor | 152 | 5 years ago | 11 | Python | ||||||
Model Compression CLI Tool for Keras. | ||||||||||
Floyd Cli | 138 | 31 | 1 | 4 years ago | 87 | January 11, 2019 | 11 | apache-2.0 | Python | |
Command line tool for FloydHub - the fastest way to build, train, and deploy deep learning models | ||||||||||
Deepl Translator Cli | 114 | 2 | a year ago | 4 | July 27, 2018 | 7 | mit | JavaScript | ||
This command line tool delivers text translation capabilities to your console and is powered by DeepL (https://www.deepl.com/translator) | ||||||||||
Aetros Cli | 112 | 2 | 6 years ago | 91 | February 27, 2018 | 4 | mit | Python | ||
AETROS CLI + SDK. Command line application to manage/monitor machine learning training in AETROS Trainer |
NodeJs make a raw text tree representation of a directory's content. Accept several options
NodeJs >= 6.x
Install as a node's package.
npm install tree-extended -g
Then, it is just running tree-extended
in any directory.
You can contribuite by forking the project on GitHub.
Run tree-extended -h
for view the help.
"tree-extended" is a function for making a directory tree in a text format. You can configure if you want print ascii characters or not. Also has a deep parameter.
'tree-extended "Path for making the tree" [-argument1[="valArg1"]] [-argument2[="valArg2"]] [-argument3[="valArg3"]]...[-argument[="valArgn"]]'
arguments:
(-?, -h, -help): Prints this help
(-max=max_level): The max deep level
(-max-show-not-empty): If -max is set and -max-show-not-empty is set, show '...' string when level prune.
(-[c|charset]=ascii|utf8|utf8-icons): Show an specific charset (default: utf8).
(-gitignore): Ignore the .git/ folder and the content inside .gitignore file.
(-ignore="[level1:]folder/file name1, [level2:]folder/file name2, ..."): Ignores folders or files in an optional tree level.
(-only="[level1:]folder/file name1, [level2:]folder/file name2, ..."): Filter and only show that folders or files in an optional tree level.
Command: tree-extended
Directory Tree:
├───a/
│ ├───aa/
│ ├───ab/
│ └───ac/
├───a1/
├───b/
│ ├───ba/
│ │ ├───bafile1.txt
│ │ └───bafile2.txt
│ ├───bb/
│ ├───bc/
│ │ └───bca/
│ │ └───bca-file1.txt
│ ├───bd/
│ └───bfile1.txt
├───c/
├───c1/
└───d/
├───d1/
└───d2/
Command: tree-extended -max=2
Directory Tree:
├───a/
│ ├───aa/
│ ├───ab/
│ └───ac/
├───a1/
├───b/
│ ├───ba/
│ ├───bb/
│ ├───bc/
│ ├───bd/
│ └───bfile1.txt
├───c/
├───c1/
└───d/
├───d1/
└───d2/
Command: tree-extended -max=1 -max-show-not-empty
Directory Tree:
├───a/
│ └───...
├───a1/
├───b/
│ └───...
├───c/
├───c1/
└───d/
└───...
Command: tree-extended -max=2 -c=ascii
Directory Tree:
+---a/
| +---aa/
| +---ab/
| \---ac/
+---a1/
+---b/
| +---ba/
| +---bb/
| +---bc/
| +---bd/
| \---bfile1.txt
+---c/
+---c1/
\---d/
+---d1/
\---d2/
Command: tree-extended -max=2 -charset=utf8-icons
Directory Tree:
├───📁 a/
│ ├───📁 aa/
│ └───📁 ab/
├───📁 a1/
├───📁 b/
│ ├───📁 bb/
│ ├───📁 bd/
│ └───📄 bfile1.txt
└───📁 d/
└───📁 d1/
Command: tree-extended -ignore="1:ba, 2:bafile1, c"
Directory Tree:
├───a/
│ ├───aa/
│ └───ab/
├───a1/
├───b/
│ ├───bb/
│ ├───bd/
│ └───bfile1.txt
└───d/
├───d1/
└───d2/
Command: tree-extended -only="0:b, 1:bc, 2:bca"
Directory Tree:
├───b/
│ └───bc/
│ └───bca/
│ └───bca-file1.txt
└───ba/
In this example you can see you can restrict to only one path (or many). But here we can see that like the restriction is 0:b
(in the level 0
restric to b
) also ba/
is included. For avoiding this, we can use regular expressions in the patterns.
Command: tree-extended -only="0:b$, 1:bc, 2:bca"
Directory Tree:
└───b/
└───bc/
└───bca/
└───bca-file1.txt