question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[feature request] --logdir should support globs

See original GitHub issue

This will he helpful for the user to compare several runs instead of all.

tensorboard --logdir setting1-*
tensorboard --logdir setting2-*
tensorboard --logdir *-xxx

Issue Analytics

  • State:open
  • Created 5 years ago
  • Reactions:19
  • Comments:18 (3 by maintainers)

github_iconTop GitHub Comments

8reactions
Victarrycommented, May 19, 2021

Will this function come in 2021?

6reactions
wchargincommented, Feb 20, 2019

@cytsai: You can do that more easily and safely with a shell alias as well (please do not use os.system like that!), but it only expands the globs at invocation time, not continuously as more files are added that match the glob.

Here is a safe way to achieve the same thing in any POSIX shell:

# usage: multitb GLOB
# runs TensorBoard with a comma-separated list of all logdirs that match
# the glob (at invocation time)
multitb() {
    logdir=
    if [ $# -eq 0 ]; then
        printf >&2 'fatal: provide at least one logdir\n'
    fi
    for arg; do
        logdir="${logdir}${logdir:+,}${arg}"
    done
    (set -x; tensorboard --logdir "${logdir}")
}
Read more comments on GitHub >

github_iconTop Results From Across the Web

Feature Request: Add Glob support to "Look In" field
1 Answer ... However, this only works for file types that are container types, such as ZIP, RAR, PST etc. I'll add your...
Read more >
Cloud Feature Requests | CircleCI Ideas
Support ARM resource class on Docker executor ... Circle CI should generate a new build when a pull request is opened on github....
Read more >
Feature Requests - Render
Recurse through submodules when cloning repos to account for nested submodules. This can currently be worked around on Native Environments ( https://community.
Read more >
Extended Glob Support - include AND boolean
January 6, 2016 in Feature Requests ... Having the AND Boolean I can easily filter all sub-groups from Data Center AND ! "Servers"....
Read more >
How do I request additional features? - Informatica Network
You can post your feature request as an Idea with an appropriate Description and Category selected as Data Loader in the community portal ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found