Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
singularityhub-EMBLRome
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nicolas Descostes
singularityhub-EMBLRome
Commits
08d46aea
Unverified
Commit
08d46aea
authored
2 years ago
by
Francesco Tabaro
Browse files
Options
Downloads
Patches
Plain Diff
Add Deeplabcut and update CI accordingly
parent
eb314b0a
No related branches found
Branches containing commit
No related tags found
5 merge requests
!13
fasterq hidden macs2 picard
,
!12
deeptools last version
,
!11
bowtie2
,
!10
bowtie2
,
!9
Add deeplabcut Singularity recipe
Pipeline
#32171
failed
2 years ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+12
-0
12 additions, 0 deletions
.gitlab-ci.yml
recipes/deeplabcut/Singularity.deeplabcut-2202
+26
-0
26 additions, 0 deletions
recipes/deeplabcut/Singularity.deeplabcut-2202
with
38 additions
and
0 deletions
.gitlab-ci.yml
+
12
−
0
View file @
08d46aea
...
...
@@ -57,7 +57,19 @@ image:
# TAG: 0119cv6
# RECIPE_PATH: recipes/quality-control/fastqc/
#####################
# DeepLabCut
#####################
deeplabcut-2202-builddeploy
:
extends
:
.templateBuildDeploy
variables
:
BASENAME
:
deeplabcut
TAG
:
2.2.0.2
RECIPE_PATH
:
recipes/deeplabcut/
only
:
changes
:
-
recipes/deeplabcut/Singularity.deeplabcut-2202
#####################
## Quality control
...
...
This diff is collapsed.
Click to expand it.
recipes/deeplabcut/Singularity.deeplabcut-2202
0 → 100644
+
26
−
0
View file @
08d46aea
Bootstrap: docker
From: deeplabcut/deeplabcut:latest-core
%help
A Singularity image from the deeplabcut:latest-core Docker. It comes with ResNet weights embedded.
%labels
AUTHOR Francesco Tabaro
VERSION 0.1
%post
apt-get update && apt-get install -y curl
cd /usr/local/lib/python3.8/dist-packages/deeplabcut/pose_estimation_tensorflow/models/pretrained/
# Adapted from download.sh
for i in resnet_v1_50_2016_08_28.tar.gz resnet_v1_101_2016_08_28.tar.gz resnet_v1_152_2016_08_28.tar.gz; do
curl -O http://download.tensorflow.org/models/$i
FN=$(tar xzvf $i)
chmod 666 $FN
rm $i
done
%runscript
exec /usr/bin/python3 "$@"
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