mnbucher commited on
Commit
dac3e92
·
verified ·
1 Parent(s): 6741887

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -6
README.md CHANGED
@@ -20,9 +20,14 @@ tags:
20
 
21
  # respace-sg-llm-1.5b
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.
24
 
25
- ## Usage
 
 
 
 
 
26
 
27
  ```python
28
  from transformers import AutoModelForCausalLM, AutoTokenizer
@@ -30,7 +35,3 @@ from transformers import AutoModelForCausalLM, AutoTokenizer
30
  model = AutoModelForCausalLM.from_pretrained("gradient-spaces/respace-sg-llm-1.5b")
31
  tokenizer = AutoTokenizer.from_pretrained("gradient-spaces/respace-sg-llm-1.5b")
32
  ```
33
-
34
- ## More Information
35
-
36
- For detailed usage instructions, training details, and examples, see the associated repository: https://github.com/GradientSpaces/respace
 
20
 
21
  # respace-sg-llm-1.5b
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: www.respace.mnbucher.com
26
+
27
+ For detailed usage instructions, training details, and examples, see the associated repository: https://github.com/GradientSpaces/respace
28
+
29
+ ## Raw Usage
30
+ It is not recommended to use SG-LLM separately without the scaffolding for addition/removal that is provided in the ReSpace repository. However, if you want to play around with model capabilities and limitations, you can use it via:
31
 
32
  ```python
33
  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
  ```