File size: 1,693 Bytes
04794eb
 
 
 
 
 
 
 
c1670d8
04794eb
 
576b39e
04794eb
576b39e
04794eb
576b39e
 
 
 
 
04794eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
576b39e
04794eb
 
 
576b39e
04794eb
 
 
576b39e
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
---
license: mit
base_model: microsoft/TRELLIS-image-large
pipeline_tag: image-to-3d
tags:
  - image-to-3d
  - 3d-generation
  - scene-generation
  - real-to-sim
---

# IScene

IScene is a segmentation-conditioned 3D scene generation model. This Hugging Face repository hosts the `IScene-v1` checkpoint package for IScene inference.

## Links

- Project: https://luling06.github.io/I-Scene-project/
- Code: https://github.com/LuLing06/I-Scene-project
- Model: https://huggingface.co/LuLing/IScene

## Contents

- `iscene_config.json`: public release metadata and checkpoint layout.
- `config.yml`: inference-only architecture configuration.
- `ckpts/iscene_denoiser.pt`: IScene denoiser checkpoint.
- `ckpts/iscene_image_conditioner.pt`: IScene image-conditioner checkpoint.

## Usage

The public IScene code should load this package with:

```python
from iscene.inference.inferencer import ISceneInferencer

inferencer = ISceneInferencer.from_pretrained("LuLing/IScene")
```

For local testing before uploading to Hugging Face:

```python
inferencer = ISceneInferencer.from_pretrained("release_hf/IScene-v1")
```

## Notes

- This package contains only the IScene release checkpoint files, not historical training logs or experimental checkpoints.
- The IScene code loads the base model from `microsoft/TRELLIS-image-large` unless an equivalent local mirror is provided.

## Attribution

IScene builds on the TRELLIS image-to-3D backbone and uses `microsoft/TRELLIS-image-large` as the base model. Please preserve upstream TRELLIS attribution and license terms when redistributing derived code or model packages.

## License

This model package is prepared for release under the MIT License.