Added multitag, includes preprocess.py, sampler.py and multitag.py(the main gui for labelling/annotation)

This commit is contained in:
2025-11-06 17:40:29 +00:00
parent c0d4c13824
commit 4d6e2511e6
6 changed files with 1147 additions and 0 deletions

16
multitag/shell.nix Normal file
View File

@@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
python313
python313Packages.tkinter
python313Packages.pandas
python313Packages.numpy
];
shellHook = ''
echo "Development environment loaded"
echo "Python: $(python --version)"
'';
}