diff options
author | msglm <msglm@techchud.xyz> | 2024-07-18 09:29:51 -0500 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2024-07-18 09:29:51 -0500 |
commit | 9e5e0a23212d3e2783bfaae91be5806b59bdf0cb (patch) | |
tree | 6b550d083004740989e65df49c5cf66cf8145512 | |
parent | 0cf07cdc07ba76ad6ba2fc1b5a89a846d41c7590 (diff) | |
download | guix-msglm-9e5e0a23212d3e2783bfaae91be5806b59bdf0cb.tar.gz guix-msglm-9e5e0a23212d3e2783bfaae91be5806b59bdf0cb.tar.bz2 guix-msglm-9e5e0a23212d3e2783bfaae91be5806b59bdf0cb.zip |
prune machine learning of unnecessary packages
-rw-r--r-- | machinelearning.scm | 163 |
1 files changed, 0 insertions, 163 deletions
diff --git a/machinelearning.scm b/machinelearning.scm index 634414b..02975e7 100644 --- a/machinelearning.scm +++ b/machinelearning.scm @@ -483,166 +483,3 @@ (description "Inference of Stable Diffusion in pure C/C++") (license license:expat))) -(define-public python-clip-interrogator - (package - (name "python-clip-interrogator") - (version "0.6.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "clip-interrogator" version)) - (sha256 - (base32 "14qn8bprpqg3nfgiki73n1cnwx6yg4qkw27ph4c1i5lvzrr27577")))) - (build-system pyproject-build-system) - (propagated-inputs (list python-accelerate - python-open-clip-torch - python-pillow - python-requests - python-safetensors - python-pytorch - python-torchvision - python-tqdm - python-transformers)) - (native-inputs (list python-pytest)) - (home-page "https://github.com/pharmapsychotic/clip-interrogator") - (synopsis "Generate a prompt from an image") - (description "Generate a prompt from an image.") - (license license:expat))) - -(define-public python-accelerate - (package - (name "python-accelerate") - (version "0.32.1") - (source - (origin - (method url-fetch) - (uri (pypi-uri "accelerate" version)) - (sha256 - (base32 "0xyijblpfsw8xhg4zz2kgdvl8d8nlgal52yrkx7hvk9p0bzsr69r")))) - (build-system pyproject-build-system) - (propagated-inputs (list python-huggingface-hub - python-numpy - python-packaging - python-psutil - python-pyyaml - python-safetensors - python-pytorch)) - (native-inputs (list python-bitsandbytes - python-black - python-comet-ml - python-datasets - python-diffusers - python-dvclive - python-evaluate - python-hf-doc-builder - python-parameterized - python-pytest - python-pytest-subtests - python-pytest-xdist - python-rich - python-ruff - python-scikit-learn - python-scipy - python-tensorboard - python-timm - python-torchpippy - python-tqdm - python-transformers - python-wandb)) - (home-page "https://github.com/huggingface/accelerate") - (synopsis "Accelerate") - (description "Accelerate.") - (license #f))) - -(define-public python-transformers - (package - (name "python-transformers") - (version "4.42.3") - (source - (origin - (method url-fetch) - (uri (pypi-uri "transformers" version)) - (sha256 - (base32 "1szp60sbxc6qjav7g8pa3k2169wxc6j4xjfbcm9182aqyhzqffbm")))) - (build-system pyproject-build-system) - (propagated-inputs (list python-filelock - python-huggingface-hub - python-numpy - python-packaging - python-pyyaml - python-regex - python-requests - python-safetensors - python-tokenizers - python-tqdm)) - (native-inputs (list python-accelerate - python-av - python-beautifulsoup4 - python-codecarbon - python-cookiecutter - python-datasets - python-decord - python-deepspeed - python-dill - python-evaluate - python-faiss-cpu - python-flax - python-fugashi - python-gitpython - python-ipadic - python-isort - python-jax - python-jaxlib - python-kenlm - python-keras-nlp - python-librosa - python-nltk - python-onnxconverter-common - python-onnxruntime - python-onnxruntime-tools - python-optax - python-optuna - python-parameterized - python-phonemizer - python-pillow - python-protobuf - python-psutil - python-pyctcdecode - python-pydantic - python-pytest - python-pytest-rich - python-pytest-timeout - python-pytest-xdist - python-ray - python-rhoknp - python-rjieba - python-rouge-score - python-ruff - python-sacrebleu - python-sacremoses - python-scikit-learn - python-scipy - python-sentencepiece - python-sigopt - python-sudachidict-core - python-sudachipy - python-tensorboard - python-tensorflow - python-tensorflow-text - python-tf2onnx - python-timeout-decorator - python-timm - python-tokenizers - python-torch - python-torchaudio - python-torchvision - python-unidic - python-unidic-lite - python-urllib3)) - (home-page "https://github.com/huggingface/transformers") - (synopsis - "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow") - (description - "State-of-the-art Machine Learning for JAX, @code{PyTorch} and @code{TensorFlow}.") - (license #f))) - |