Verbose programs explain their intentions, behavior and results with a high level of detail. It's typically the opposite to silent.
Questions tagged [verbose]
163 questions
170
votes
6 answers
What is the use of verbose in Keras while validating the model?
I'm running the LSTM model for the first time.
Here is my model:
opt = Adam(0.002)
inp = Input(...)
print(inp)
x = Embedding(....)(inp)
x = LSTM(...)(x)
x = BatchNormalization()(x)
pred = Dense(5,activation='softmax')(x)
model =…

rakesh
- 1,667
- 2
- 11
- 12
137
votes
8 answers
Git Tag list, display commit sha1 hashes
so the git tag command lists the current git tags
tag1
tag2
git tag -n prints tag's message
tag1 blah blah
tag2 blah blah
What's the best way to get the hash of tag1 & tag2 ?

Quang Van
- 11,475
- 12
- 57
- 61
61
votes
1 answer
Git clone verbose output?
I have to clone a couple of big repos in my Dockerfile. It really can take an hour to clone a single repo and I want to see standard Git progress output to understand what's going on.
However, when Git is started from the Dockerfile, I see no git…

Aleksei Petrenko
- 6,698
- 10
- 53
- 87
49
votes
11 answers
Is it good practice to use ordinal of enum?
I have an enum:
public enum Persons {
CHILD,
PARENT,
GRANDPARENT;
}
Is there any problem with using ordinal() method to check "hierarchy" between enum members? I mean - is there any disadvantages when using it excluding verbosity,…

ByeBye
- 6,650
- 5
- 30
- 63
45
votes
5 answers
Error compiling a verbose Java regex with character class and word boundary
Why does this pattern fail to compile :
Pattern.compile("(?x)[ ]\\b");
Error
ERROR java.util.regex.PatternSyntaxException:
Illegal/unsupported escape sequence near index 8
(?x)[ ]\b
^
at java_util_regex_Pattern$compile.call (Unknown…

Tobia
- 17,856
- 6
- 74
- 93
44
votes
3 answers
'verbose' argument in scikit-learn
Many scikit-learn functions have a verbose argument that, according to their documentation, "[c]ontrols the verbosity: the higher, the more messages" (e.g., GridSearchCV).
Unfortunately, no guidance is provided on which integers are allowed (e.g.,…

Gyan Veda
- 6,309
- 11
- 41
- 66
32
votes
2 answers
Git clone verbose mode – show each incoming object
I’m wondering that git clone --verbose is not very verbose. The output of executing the command is the following:
$ git clone --verbose
remote: Counting objects: 184, done
remote: Finding sources: 100% (184/184)
remote: Total 184 (delta 66),…

erkfel
- 1,588
- 2
- 17
- 29
32
votes
1 answer
GCC verbose mode output explanation
I'm new to linux. Can anyone explain to me the following verbose mode output for my hello world program? Also, what do the files crt1.o, crti.o, crtend.o, crtbegin.o and crtn.o and lc and lgcc do? Any other explanatory links are also welcome.
$ gcc…

Gomathi
- 973
- 7
- 17
- 37
17
votes
2 answers
echo back every Ruby code line like sh -x?
Is there a way to have a ruby script echo back (or log to file I can tail -f) every line executed, similar to bash -x or @echo on in DOS?
ruby -w doesn't do it--only increases verbosity of warnings etc.
Researched Unroller but it doesn't work,…

Marcos
- 4,796
- 5
- 40
- 64
17
votes
1 answer
Powershell: how to implement standard switches?
For things like -WhatIf, we have $PSCmdlet.ShouldProcess() given to us by the [CmdletBinding] attribute. Are there other such tools or practices for implementing common command line arguments such as -Verbose, -Debug, -PassThru, etc?

bwerks
- 8,651
- 14
- 68
- 100
17
votes
1 answer
"Verbose" auto in Coq
I'm learning Coq and the book I'm learning from, (CPDT) makes heavy use of auto in proofs.
Since I'm learning I think it might be helpful for me to see exactly what auto is doing under the hood (the less magic early on the better). Is there any way…

user2079615
- 171
- 4
16
votes
6 answers
Make cURL output STDERR to file (or string)
We're trying to debug some cURL errors on the server, and I would like to see the STDERR log. Currently, all we can see for our error is "error code: 7" and that we can't connect to target server. We have contacted the host and made special rule to…

Radley Sustaire
- 3,382
- 9
- 37
- 48
16
votes
5 answers
Conditional OR in makefile
I'd like to enable a verbose compilation in my makefile, but I can't figure out how to make a conditional OR.
Let me explain: I want to be able to specify a verbose compilation either by setting V=1 or VERBOSE=1. I want to keep VERBOSE=1 available…

Gui13
- 12,993
- 17
- 57
- 104
13
votes
2 answers
AOSP make verbose
How to see verbose compile command in AOSP build? ndk-build provides V=1 option. What about build from source? May I type similar to
. build/envsetup.sh
lunch
make liblog V=1
and see raw compiler execution lines?

valior
- 449
- 2
- 4
- 8
12
votes
1 answer
Why my Write-Verbose messages do not appear?
I have replaced some of th ecomments with:
Write-Verbose "Doing somthing..."
and I run my script via PS ISE like:
.\FooScript.ps1 -verbose
But in the output window I do not see any of those messages.
How can I make the write-Verbose messages…

pencilCake
- 51,323
- 85
- 226
- 363