manikantasripadi commited on
Commit
ccf2a33
·
verified ·
1 Parent(s): 4f623fe

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - neoistone
5
+ - software
6
+ - small-model
7
+ - instruction-tuned
8
+ ---
9
+
10
+ # 🧠 neoistone-small
11
+
12
+ `neoistone-small` is a small language model fine-tuned on internal Neoistone-related data.
13
+ It is designed to answer questions about Neoistone company, its services, history, and general software development topics.
14
+
15
+ ---
16
+
17
+ ## 🏗️ Model Details
18
+
19
+ | Attribute | Value |
20
+ |:---------|:------|
21
+ | Base Model | EleutherAI/pythia-410m |
22
+ | Fine-tuned On | Custom Neoistone dataset (JSONL) |
23
+ | Parameters | 410 Million |
24
+ | Training Hardware | CPU-only training |
25
+ | Purpose | FAQ answering about Neoistone, general software info |
26
+
27
+ ---
28
+
29
+ ## 🚀 Example Usage
30
+
31
+ ```python
32
+ from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
33
+
34
+ tokenizer = AutoTokenizer.from_pretrained("manikantasripadi/neoistone-small")
35
+ model = AutoModelForCausalLM.from_pretrained("manikantasripadi/neoistone-small")
36
+
37
+ pipe = pipeline("text-generation", model=model, tokenizer=tokenizer)
38
+
39
+ result = pipe("<s>[INST] What is Neoistone? [/INST]")
40
+ print(result[0]['generated_text'])