Instructions to use stepfun-ai/NextStep-1-Large-Edit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use stepfun-ai/NextStep-1-Large-Edit with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-to-image", model="stepfun-ai/NextStep-1-Large-Edit", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("stepfun-ai/NextStep-1-Large-Edit", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Add pipeline tag and library name
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
## NextStep-1: Toward Autoregressive Image Generation with Continuous Tokens at Scale
|
|
@@ -99,4 +101,4 @@ If you find NextStep useful for your research and applications, please consider
|
|
| 99 |
journal={arXiv preprint arXiv:2508.10711},
|
| 100 |
year={2025}
|
| 101 |
}
|
| 102 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
pipeline_tag: image-to-image
|
| 4 |
+
library_name: transformers
|
| 5 |
---
|
| 6 |
|
| 7 |
## NextStep-1: Toward Autoregressive Image Generation with Continuous Tokens at Scale
|
|
|
|
| 101 |
journal={arXiv preprint arXiv:2508.10711},
|
| 102 |
year={2025}
|
| 103 |
}
|
| 104 |
+
```
|