Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Komodo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dragoon
Komodo
Commits
291cc1f7
Unverified
Commit
291cc1f7
authored
10 months ago
by
STEVAN Antoine
Browse files
Options
Downloads
Patches
Plain Diff
add snippet to plot all experiments
parent
e841c66b
No related branches found
No related tags found
No related merge requests found
Pipeline
#5363
passed
10 months ago
Stage: fmt
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bins/inbreeding/README.md
+14
-0
14 additions, 0 deletions
bins/inbreeding/README.md
with
14 additions
and
0 deletions
bins/inbreeding/README.md
+
14
−
0
View file @
291cc1f7
...
@@ -39,3 +39,17 @@ inbreeding run --options $OPTS --prng-seed $PRNG_SEED
...
@@ -39,3 +39,17 @@ inbreeding run --options $OPTS --prng-seed $PRNG_SEED
let
experiment
=
$"(
$PRNG_SEED
)-(
$OPTS
.environment)-(
$OPTS
.k)-(
$OPTS
.n)-(
$OPTS
.nb_bytes)"
let
experiment
=
$"(
$PRNG_SEED
)-(
$OPTS
.environment)-(
$OPTS
.k)-(
$OPTS
.n)-(
$OPTS
.nb_bytes)"
inbreeding load
$experiment
| inbreeding plot
inbreeding load
$experiment
| inbreeding plot
```
```
## plot all experiments
```
bash
use bins/inbreeding/consts.nu CACHE
use bins/inbreeding
const FIGURES_DIR
=
(
$CACHE
| path
join
figures
)
mkdir
$FIGURES_DIR
for
exp
in
(
inbreeding list
)
{
inbreeding load
$exp
| inbreeding plot
--save
(
$FIGURES_DIR
| path
join
$exp
)
}
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment