ariG23498 HF Staff commited on
Commit
db00c97
·
verified ·
1 Parent(s): 935966a

Upload stepfun-ai_Step-Audio-EditX_0.txt with huggingface_hub

Browse files
Files changed (1) hide show
  1. stepfun-ai_Step-Audio-EditX_0.txt +75 -0
stepfun-ai_Step-Audio-EditX_0.txt ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ```CODE:
2
+ # Use a pipeline as a high-level helper
3
+ from transformers import pipeline
4
+
5
+ pipe = pipeline("text-to-speech", model="stepfun-ai/Step-Audio-EditX", trust_remote_code=True)
6
+ ```
7
+
8
+ ERROR:
9
+ Traceback (most recent call last):
10
+ File "/tmp/stepfun-ai_Step-Audio-EditX_0SyWequ.py", line 24, in <module>
11
+ pipe = pipeline("text-to-speech", model="stepfun-ai/Step-Audio-EditX", trust_remote_code=True)
12
+ File "/tmp/.cache/uv/environments-v2/1487291927adee22/lib/python3.13/site-packages/transformers/pipelines/__init__.py", line 1027, in pipeline
13
+ framework, model = infer_framework_load_model(
14
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~^
15
+ adapter_path if adapter_path is not None else model,
16
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
17
+ ...<5 lines>...
18
+ **model_kwargs,
19
+ ^^^^^^^^^^^^^^^
20
+ )
21
+ ^
22
+ File "/tmp/.cache/uv/environments-v2/1487291927adee22/lib/python3.13/site-packages/transformers/pipelines/base.py", line 333, in infer_framework_load_model
23
+ raise ValueError(
24
+ f"Could not load model {model} with any of the following classes: {class_tuple}. See the original errors:\n\n{error}\n"
25
+ )
26
+ ValueError: Could not load model stepfun-ai/Step-Audio-EditX with any of the following classes: (<class 'transformers.models.auto.modeling_auto.AutoModelForTextToWaveform'>, <class 'transformers.models.auto.modeling_auto.AutoModelForTextToSpectrogram'>). See the original errors:
27
+
28
+ while loading with AutoModelForTextToWaveform, an error is thrown:
29
+ Traceback (most recent call last):
30
+ File "/tmp/.cache/uv/environments-v2/1487291927adee22/lib/python3.13/site-packages/transformers/pipelines/base.py", line 293, in infer_framework_load_model
31
+ model = model_class.from_pretrained(model, **kwargs)
32
+ File "/tmp/.cache/uv/environments-v2/1487291927adee22/lib/python3.13/site-packages/transformers/models/auto/auto_factory.py", line 607, in from_pretrained
33
+ raise ValueError(
34
+ ...<2 lines>...
35
+ )
36
+ ValueError: Unrecognized configuration class <class 'transformers_modules.stepfun_hyphen_ai.Step_hyphen_Audio_hyphen_EditX.90a39993d74d1d25099a4e23ec26abce3772b74d.configuration_step1.Step1Config'> for this kind of AutoModel: AutoModelForTextToWaveform.
37
+ Model type should be one of BarkConfig, CsmConfig, FastSpeech2ConformerConfig, FastSpeech2ConformerWithHifiGanConfig, MusicgenConfig, MusicgenMelodyConfig, Qwen2_5OmniConfig, Qwen3OmniMoeConfig, SeamlessM4TConfig, SeamlessM4Tv2Config, VitsConfig.
38
+
39
+ During handling of the above exception, another exception occurred:
40
+
41
+ Traceback (most recent call last):
42
+ File "/tmp/.cache/uv/environments-v2/1487291927adee22/lib/python3.13/site-packages/transformers/pipelines/base.py", line 311, in infer_framework_load_model
43
+ model = model_class.from_pretrained(model, **fp32_kwargs)
44
+ File "/tmp/.cache/uv/environments-v2/1487291927adee22/lib/python3.13/site-packages/transformers/models/auto/auto_factory.py", line 607, in from_pretrained
45
+ raise ValueError(
46
+ ...<2 lines>...
47
+ )
48
+ ValueError: Unrecognized configuration class <class 'transformers_modules.stepfun_hyphen_ai.Step_hyphen_Audio_hyphen_EditX.90a39993d74d1d25099a4e23ec26abce3772b74d.configuration_step1.Step1Config'> for this kind of AutoModel: AutoModelForTextToWaveform.
49
+ Model type should be one of BarkConfig, CsmConfig, FastSpeech2ConformerConfig, FastSpeech2ConformerWithHifiGanConfig, MusicgenConfig, MusicgenMelodyConfig, Qwen2_5OmniConfig, Qwen3OmniMoeConfig, SeamlessM4TConfig, SeamlessM4Tv2Config, VitsConfig.
50
+
51
+ while loading with AutoModelForTextToSpectrogram, an error is thrown:
52
+ Traceback (most recent call last):
53
+ File "/tmp/.cache/uv/environments-v2/1487291927adee22/lib/python3.13/site-packages/transformers/pipelines/base.py", line 293, in infer_framework_load_model
54
+ model = model_class.from_pretrained(model, **kwargs)
55
+ File "/tmp/.cache/uv/environments-v2/1487291927adee22/lib/python3.13/site-packages/transformers/models/auto/auto_factory.py", line 607, in from_pretrained
56
+ raise ValueError(
57
+ ...<2 lines>...
58
+ )
59
+ ValueError: Unrecognized configuration class <class 'transformers_modules.stepfun_hyphen_ai.Step_hyphen_Audio_hyphen_EditX.90a39993d74d1d25099a4e23ec26abce3772b74d.configuration_step1.Step1Config'> for this kind of AutoModel: AutoModelForTextToSpectrogram.
60
+ Model type should be one of FastSpeech2ConformerConfig, SpeechT5Config.
61
+
62
+ During handling of the above exception, another exception occurred:
63
+
64
+ Traceback (most recent call last):
65
+ File "/tmp/.cache/uv/environments-v2/1487291927adee22/lib/python3.13/site-packages/transformers/pipelines/base.py", line 311, in infer_framework_load_model
66
+ model = model_class.from_pretrained(model, **fp32_kwargs)
67
+ File "/tmp/.cache/uv/environments-v2/1487291927adee22/lib/python3.13/site-packages/transformers/models/auto/auto_factory.py", line 607, in from_pretrained
68
+ raise ValueError(
69
+ ...<2 lines>...
70
+ )
71
+ ValueError: Unrecognized configuration class <class 'transformers_modules.stepfun_hyphen_ai.Step_hyphen_Audio_hyphen_EditX.90a39993d74d1d25099a4e23ec26abce3772b74d.configuration_step1.Step1Config'> for this kind of AutoModel: AutoModelForTextToSpectrogram.
72
+ Model type should be one of FastSpeech2ConformerConfig, SpeechT5Config.
73
+
74
+
75
+