bajrangCoder commited on
Commit
96aec26
1 Parent(s): afe981d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +50 -13
README.md CHANGED
@@ -11,33 +11,70 @@ datasets:
11
  - bajrangCoder/bhagvatgita-alpaca
12
  ---
13
 
14
- # Bhagvat_gita
15
-
16
- A fine-tunned version of Mistral-7B-Instruct-v0.3 on bhagvat_gita dataset
17
-
18
 
 
19
 
20
  ## Model Details
21
 
22
  ### Model Description
23
 
24
- LLM......
25
 
26
- - **Developed by:** Raunak Raj
27
  - **License:** MIT
28
- - **Finetuned from model [optional]:** Mistral-7B-Instruct-v0.3
 
29
 
30
  ## Uses
31
 
32
- 1. Using `transformers`
33
 
34
- ```
 
 
35
  from transformers import pipeline
36
 
37
  messages = [
38
- {"role": "system", "content": "You are Lord Krishna and You have to answer in context to bhagvat gita"},
39
  {"role": "user", "content": "How to face failures in life?"},
40
  ]
41
- chatbot = pipeline("text-generation", model="bajrangCoder/bhagvat_gita")
42
- chatbot(messages)
43
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  - bajrangCoder/bhagvatgita-alpaca
12
  ---
13
 
14
+ ## BhagavadGita
 
 
 
15
 
16
+ A fine-tuned version of Mistral-7B-Instruct-v0.3 on the Bhagavad Gita religious text.
17
 
18
  ## Model Details
19
 
20
  ### Model Description
21
 
22
+ BhagavadGita is a Large Language Model (LLM) fine-tuned from Mistral-7B-Instruct-v0.3, specifically tailored to provide insights and responses rooted in the wisdom of the Bhagavad Gita. This model is designed to emulate the perspective of Lord Krishna, offering guidance and answering questions in a manner consistent with the teachings of the Bhagavad Gita.
23
 
24
+ - **Developed by:** Raunak Raj
25
  - **License:** MIT
26
+ - **Finetuned from model:** Mistral-7B-Instruct-v0.3
27
+ - **Quantized Version:** A quantized GGUF version of the model is also available for more efficient deployment.
28
 
29
  ## Uses
30
 
31
+ ### Using `transformers`
32
 
33
+ You can utilize this model with the `transformers` library as follows:
34
+
35
+ ```python
36
  from transformers import pipeline
37
 
38
  messages = [
39
+ {"role": "system", "content": "You are Lord Krishna and You have to answer in context to bhagavad gita"},
40
  {"role": "user", "content": "How to face failures in life?"},
41
  ]
42
+
43
+ chatbot = pipeline("text-generation", model="bajrangCoder/BhagavadGita")
44
+ response = chatbot(messages)
45
+ print(response)
46
+ ```
47
+
48
+ ### Use Cases
49
+
50
+ 1. **Spiritual Guidance:** Obtain advice and spiritual insights inspired by the Bhagavad Gita.
51
+ 2. **Educational Tool:** Aid in the study and understanding of the Bhagavad Gita by providing contextually relevant answers.
52
+ 3. **Philosophical Inquiry:** Explore philosophical questions through the lens of one of Hinduism's most revered texts.
53
+
54
+ ## Installation
55
+
56
+ To use the BhagavadGita model, you need to install the `transformers` library. You can install it using pip:
57
+
58
+ ```sh
59
+ pip install transformers
60
+ ```
61
+
62
+ ## Quantized GGUF Version
63
+
64
+ A quantized GGUF version of BhagavadGita is available for those who need a more efficient deployment. This version reduces the model size and computational requirements while maintaining performance, making it suitable for resource-constrained environments.
65
+
66
+ ## Model Performance
67
+
68
+ BhagavadGita has been fine-tuned to ensure that its responses are in alignment with the teachings of the Bhagavad Gita. However, as with any AI model, it is important to critically evaluate the responses and consider the context in which the advice is given.
69
+
70
+ ## Contributing
71
+
72
+ If you wish to contribute to the development of BhagavadGita, please feel free to fork the repository and submit pull requests. Any contributions that enhance the accuracy, usability, or scope of the model are welcome.
73
+
74
+ ## License
75
+
76
+ This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.
77
+
78
+ ---
79
+
80
+ By using BhagavadGita, you acknowledge that you have read and understood the terms and conditions under which the model is provided, and agree to use it in accordance with the applicable laws and ethical guidelines.