File size: 1,587 Bytes
4720ab8
 
cfc2dbf
 
 
 
 
 
 
 
 
4720ab8
cc2a8b5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cfc2dbf
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
license: apache-2.0
language:
- en
base_model:
- TinyLlama/TinyLlama-1.1B-Chat-v1.0
pipeline_tag: text-generation
tags:
- chemistry
- science
- physics
---
# HamAI Science Model

A lightweight language model designed to answer science questions clearly and accurately in English.

---

## Overview

HamAI Science Model is trained and fine-tuned on science question–answer datasets. It is built to provide straightforward explanations across topics like physics, chemistry, and biology.

---

## Features

* Focused on science Q&A
* Clear and simple English answers
* Lightweight and efficient
* Suitable for educational use

---

## Usage

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "Haamipromax/HamAI-Science-1b"

tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)

input_text = "Explain how quantum entanglement violates classical locality."
inputs = tokenizer(input_text, return_tensors="pt")

outputs = model.generate(**inputs, max_new_tokens=100)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
```

---

## Training Data

The model was trained on a mix of science question–answer datasets, including:

* General science questions
* Educational textbooks
* Scientific materials

---

## Limitations

* May produce incorrect answers outside science topics
* Not suitable for advanced research-level questions

---

## Intended Use

* Students learning science
* Simple question answering systems
* Educational tools and assistants

---

## License

Apache-2.0