Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cami
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
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
Chow Castro, Marcos
cami
Compare revisions
c16f1fb2e1c7576083b6fb879ad334623755bbef to d0b142c5f47ff4675e1c07a57b7194a0f8bd8729
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
bay2046/cami
Select target project
No results found
d0b142c5f47ff4675e1c07a57b7194a0f8bd8729
Select Git revision
Branches
cami_restructured
cami_seed_variation
camis
main
seed_variation_ruegen
5 results
Swap
Target
bay2046/cami
Select target project
bay2046/cami
1 result
c16f1fb2e1c7576083b6fb879ad334623755bbef
Select Git revision
Branches
cami_restructured
cami_seed_variation
camis
main
seed_variation_ruegen
5 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Merge branch 'main' of
https://gitlab.rrz.uni-hamburg.de/bay2046/cami
· dc744ae2
mlmial
authored
1 year ago
dc744ae2
added seed variation script to conduct seed variation analysis with multiple seed sets
· d0b142c5
mlmial
authored
1 year ago
d0b142c5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
cami_src/seed_variation.py
+13
-0
13 additions, 0 deletions
cami_src/seed_variation.py
with
13 additions
and
0 deletions
cami_src/seed_variation.py
0 → 100755
View file @
d0b142c5
#!/usr/bin/env python3
import
sys
from
os.path
import
basename
import
subprocess
,
random
import
matplotlib.pyplot
as
plt
network
=
sys
.
argv
[
1
]
seedfiles
=
sys
.
argv
[
2
:]
config
=
'
seed_variationconf
'
for
seeds
in
seedfiles
:
identifier
=
basename
(
seeds
).
rsplit
(
'
.
'
)[
0
]
+
'
_seedvar_different_consensus_approaches
'
command
=
f
'
./cami.py -n
{
network
}
-s
{
seeds
}
-id
{
identifier
}
-conf
{
config
}
-var 5 -f -p;
'
subprocess
.
call
(
command
,
shell
=
True
)
This diff is collapsed.
Click to expand it.