Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

https://github.com/Bilkent-ModVis/LMA-IK
13 July 2026, 08:06:49 UTC
  • Code
  • Branches (1)
  • Releases (0)
  • Visits
    • Branches
    • Releases
    • HEAD
    • refs/heads/main
    No releases to show
  • 10b26e1
  • /
  • install.sh
Raw File Download Save again
Take a new snapshot of a software origin

If the archived software origin currently browsed is not synchronized with its upstream version (for instance when new commits have been issued), you can explicitly request Software Heritage to take a new snapshot of it.

Use the form below to proceed. Once a request has been submitted and accepted, it will be processed as soon as possible. You can then check its processing state by visiting this dedicated page.
swh spinner

Processing "take a new snapshot" request ...

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
  • revision
  • snapshot
origin badgecontent badge
swh:1:cnt:49b73ed12ef0272982b90f6ac2812873d705f656
origin badgedirectory badge
swh:1:dir:10b26e1b7c7a95b26052d57e80642b54524e2a1b
origin badgerevision badge
swh:1:rev:2c373a27da9bc2574cfbc14ae11ec26a711fcd26
origin badgesnapshot badge
swh:1:snp:13347a2300b9fcbadaf8b5df00e1dde130561fe4

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
  • revision
  • snapshot
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
Tip revision: 2c373a27da9bc2574cfbc14ae11ec26a711fcd26 authored by Akif on 09 July 2026, 08:50:27 UTC
Bundle the finger-removed LMA Effort dataset (CC0)
Tip revision: 2c373a2
install.sh
#!/usr/bin/env bash
# Vanilla-install setup for LMA-IK on macOS (11+) and Ubuntu (20.04+).
# Creates a Python 3.11 virtual environment in ./.venv and installs all
# dependencies declared in pyproject.toml. No paths need to be edited.
#
# CPU and Apple-Silicon (MPS) wheels of PyTorch install automatically from
# PyPI. For an NVIDIA CUDA build, install the matching torch wheel afterwards
# following https://pytorch.org/get-started/locally/.
set -euo pipefail
cd "$(dirname "$0")"

if command -v uv >/dev/null 2>&1; then
    uv venv --python 3.11 .venv
    uv pip install --python .venv -e ".[notebooks]"
else
    python3.11 -m venv .venv
    ./.venv/bin/python -m pip install --upgrade pip
    ./.venv/bin/python -m pip install -e ".[notebooks]"
fi

echo
echo "Setup complete. Reproduce the representative result with:"
echo "    ./.venv/bin/python reproduce.py"

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API