Update README.md
Browse files
README.md
CHANGED
@@ -22,7 +22,7 @@ tags:
|
|
22 |
|
23 |
Fine-tuned version of [Qwen/Qwen2.5-1.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct) for 3D indoor scene synthesis coined SG-LLM.
|
24 |
|
25 |
-
Mor information about ReSpace:
|
26 |
|
27 |
For detailed usage instructions, training details, and examples, see the associated repository: https://github.com/GradientSpaces/respace
|
28 |
|
@@ -35,3 +35,15 @@ from transformers import AutoModelForCausalLM, AutoTokenizer
|
|
35 |
model = AutoModelForCausalLM.from_pretrained("gradient-spaces/respace-sg-llm-1.5b")
|
36 |
tokenizer = AutoTokenizer.from_pretrained("gradient-spaces/respace-sg-llm-1.5b")
|
37 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
Fine-tuned version of [Qwen/Qwen2.5-1.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct) for 3D indoor scene synthesis coined SG-LLM.
|
24 |
|
25 |
+
Mor information about ReSpace: http://respace.mnbucher.com
|
26 |
|
27 |
For detailed usage instructions, training details, and examples, see the associated repository: https://github.com/GradientSpaces/respace
|
28 |
|
|
|
35 |
model = AutoModelForCausalLM.from_pretrained("gradient-spaces/respace-sg-llm-1.5b")
|
36 |
tokenizer = AutoTokenizer.from_pretrained("gradient-spaces/respace-sg-llm-1.5b")
|
37 |
```
|
38 |
+
|
39 |
+
## Citation
|
40 |
+
If you use SG-LLM, the ReSpace framework, or if you found our work useful, please cite us as follows:
|
41 |
+
|
42 |
+
```bibtex
|
43 |
+
@article{bucher2025respace,
|
44 |
+
title={ReSpace: Text-Driven 3D Scene Synthesis and Editing with Preference Alignment},
|
45 |
+
author={Bucher, Martin JJ and Armeni, Iro},
|
46 |
+
journal={arXiv preprint arXiv:2506.02459},
|
47 |
+
year={2025}
|
48 |
+
}
|
49 |
+
```
|