初始化项目,由ModelHub XC社区提供模型

Model: kimwooglae/AISquare-Instruct-SOLAR-10.7b-v0.5.31
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-07 03:43:18 +08:00
commit 7a92d7af43
14 changed files with 91764 additions and 0 deletions

34
README.md Normal file
View File

@@ -0,0 +1,34 @@
---
language:
- en
pipeline_tag: text-generation
license: cc-by-nc-4.0
---
# AISquare-Instruct-SOLAR-10.7b-v0.5.31
## Model Details
**Developed by**
[Inswave Systems](https://www.inswave.com) UI Platform Team
**Base Model**
[upstage/SOLAR-10.7B-v1.0](https://huggingface.co/upstage/SOLAR-10.7B-v1.0)
# Implementation Code
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
repo = "kimwooglae/AISquare-Instruct-SOLAR-10.7b-v0.5.31"
model = AutoModelForCausalLM.from_pretrained(
repo,
return_dict=True,
torch_dtype=torch.float16,
device_map='auto'
)
tokenizer = AutoTokenizer.from_pretrained(repo)
```
---