blob: 4a794bd05634638315911f15b81c952e4ad92e7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
%global _empty_manifest_terminate_build 0
Name: python-transformers
Version: 4.37.1
Release: 1
Summary: HuggingFace Transformers package for python3
License: Apache-2.0
URL: https://huggingface.co/docs/transformers/index
Source0: https://github.com/huggingface/transformers/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
Requires: python3-filelock
Requires: python3-packaging
Requires: python3-numpy
Requires: python3-pyyaml
Requires: python3-regex
Requires: python3-requests
Requires: python3-safetensors >= 0.3.1
Requires: python3-tqdm
%description
Transformers support framework interoperability between PyTorch, TensorFlow, and JAX. This provides the flexibility to use a different framework at each stage of a model’s life; train a model in three lines of code in one framework, and load it for inference in another. Models can also be exported to a format like ONNX and TorchScript for deployment in production environments.
%package -n python3-transformers
Summary: Tensors and Dynamic neural networks in Python with strong GPU acceleration
Provides: python-transformer
BuildRequires: python3-devel
BuildRequires: python3-setuptools
#BuildRequires: python3-setuptools_scm
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-hatchling
%description -n python3-transformers
Transformers provides APIs and tools to easily download and train state-of-the-art pretrained models. Using pretrained models can reduce your compute costs, carbon footprint, and save you the time and resources required to train a model from scratch. These models support common tasks in different modalities, such as natural language processing, computer vision, audio and multimodal.
%package help
Summary: Development documents and examples for torch
Provides: python3-transformers-doc
%description help
description for python3 transformers documents
%prep
%autosetup -p1 -n transformers-%{version}
%build
%pyproject_build
%install
%pyproject_install
%files -n python3-transformers
%doc *.md
%license LICENSE
%{_bindir}/transformers-cli
%{python3_sitelib}/transformers/*
%{python3_sitelib}/transformers-%{version}.dist-info/*
%changelog
* Fri Jan 26 2024 menma <1316818279@qq.com> - 4.37.1-1
- Package init
|