rogkesavan commited on
Commit
8f0820b
1 Parent(s): 27abc8d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -3
README.md CHANGED
@@ -1,3 +1,57 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Nidum-Limitless-Gemma-2B LLM
2
+
3
+ **Now Live!**
4
+
5
+ Welcome to the repository for Nidum-Limitless-Gemma-2B, an advanced language model that provides unrestricted and versatile responses across a wide range of topics. Unlike conventional models, Nidum-Limitless-Gemma-2B is designed to handle any type of question and deliver comprehensive answers without content restrictions.
6
+
7
+ ## Key Features:
8
+ - **Unrestricted Responses:** Address any query with detailed, unrestricted responses, providing a broad spectrum of information and insights.
9
+ - **Versatility:** Capable of engaging with a diverse range of topics, from complex scientific questions to casual conversation.
10
+ - **Advanced Understanding:** Leverages a vast knowledge base to deliver contextually relevant and accurate outputs across various domains.
11
+ - **Customizability:** Adaptable to specific user needs and preferences for different types of interactions.
12
+
13
+ ## Use Cases:
14
+ - Open-Ended Q&A
15
+ - Creative Writing and Ideation
16
+ - Research Assistance
17
+ - Educational and Informational Queries
18
+ - Casual Conversations and Entertainment
19
+
20
+ ## How to Use:
21
+
22
+ To get started with Nidum-Limitless-Gemma-2B, you can use the following sample code for testing:
23
+
24
+ ```python
25
+ import torch
26
+ from transformers import pipeline
27
+
28
+ pipe = pipeline(
29
+ "text-generation",
30
+ model="nidum/Nidum-Limitless-Gemma-2B",
31
+ model_kwargs={"torch_dtype": torch.bfloat16},
32
+ device="cuda", # replace with "mps" to run on a Mac device
33
+ )
34
+
35
+ messages = [
36
+ {"role": "user", "content": "who are you"},
37
+ ]
38
+
39
+ outputs = pipe(messages, max_new_tokens=256)
40
+ assistant_response = outputs[0]["generated_text"][-1]["content"].strip()
41
+ print(assistant_response)
42
+ ```
43
+
44
+ ## Release Date:
45
+ Nidum-Limitless-Gemma-2B is now officially available. Explore its capabilities and experience the freedom of unrestricted responses.
46
+
47
+ ## Contributing:
48
+ We welcome contributions to enhance the model or expand its functionalities. Details on how to contribute will be available in the coming updates.
49
+
50
+ ## Contact:
51
+ For any inquiries or further information, please contact us at **[email protected]**.
52
+
53
+ ---
54
+
55
+ Dive into limitless possibilities with Nidum-Limitless-Gemma-2B!
56
+
57
+ ---