Riddhish121 commited on
Commit
6450003
ยท
verified ยท
1 Parent(s): 1f0a52d

UPD README

Browse files
Files changed (1) hide show
  1. README.md +118 -3
README.md CHANGED
@@ -1,3 +1,118 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ๐Ÿ•‰๏ธ DeepShiva - AI Travel Companion for Indian Tourism & Wellness
2
+
3
+ **Your intelligent guide to India's spiritual and cultural heritage**
4
+
5
+ ## ๐ŸŒŸ Overview
6
+
7
+ DeepShiva is a specialized AI model designed to bridge the gap between modern travelers and India's rich spiritual traditions. Built on the robust foundation of Llama 8B, this model serves as your personal companion for exploring Indian tourism, wellness practices, yoga, Ayurveda, and ancient wisdom.
8
+
9
+ DeepShiva addresses these challenges by providing culturally-informed, spiritually-aware AI assistance that respects and preserves traditional knowledge while making it accessible to modern practitioners.
10
+
11
+ ## ๐Ÿ”ง Technical Specifications
12
+
13
+ - **Base Model**: Llama 8B (8.03B parameters)
14
+ - **Fine-tuning Method**: QLoRA (Quantized Low-Rank Adaptation)
15
+ - **Training Type**: Unsupervised Fine-tuning
16
+ - **Architecture**: Transformer-based with specialized Indian cultural knowledge
17
+ - **Hardware**: Trained on AMD MI300 GPU
18
+ - **Model Size**: 8.03B parameters
19
+ - **Quantization**: 4-bit optimization for efficient deployment
20
+
21
+ ## ๐Ÿ“š Training Datasets
22
+
23
+ The model was fine-tuned on carefully curated datasets focusing on Indian spiritual and cultural knowledge:
24
+
25
+ 1. **Sanskrit-llama** (`diabolic6045/Sanskrit-llama`)
26
+ - Ancient Sanskrit texts and translations
27
+ - Foundational spiritual literature
28
+
29
+ 2. **Bhagavad Gita** (`OEvortex/Bhagavad_Gita`)
30
+ - Complete Bhagavad Gita with commentary
31
+ - Philosophical discussions and interpretations
32
+
33
+ 3. **Ramayana** (`Naman0001/Ramayan`)
34
+ - Epic narratives and moral teachings
35
+ - Cultural values and traditional stories
36
+
37
+ These datasets ensure the model has deep understanding of:
38
+ - Sanskrit terminology and concepts
39
+ - Hindu philosophy and spirituality
40
+ - Traditional Indian values and practices
41
+ - Cultural context for modern applications
42
+
43
+ ## ๐ŸŽฎ Try the Model
44
+
45
+ Experience DeepShiva through our interactive web interface:
46
+ - **Live Demo**: [Try our Fine-tuned Model](https://www.prayog.live/)
47
+ - **Hugging Face Space**: Available for direct model interaction
48
+ - **API Access**: Available through Hugging Face Inference API
49
+
50
+ ## ๐Ÿƒโ€โ™‚๏ธ Quick Start
51
+
52
+ ```python
53
+ from transformers import AutoTokenizer, AutoModelForCausalLM
54
+ import torch
55
+
56
+ # Load the model and tokenizer
57
+ model_name = "Riddhish121/Indian-cluture-deepshiva"
58
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
59
+ model = AutoModelForCausalLM.from_pretrained(
60
+ model_name,
61
+ torch_dtype=torch.float16,
62
+ device_map="auto"
63
+ )
64
+
65
+ # Example usage
66
+ prompt = "Guide me through a traditional yoga practice for beginners"
67
+ inputs = tokenizer(prompt, return_tensors="pt")
68
+ outputs = model.generate(**inputs, max_length=200, temperature=0.7)
69
+ response = tokenizer.decode(outputs[0], skip_special_tokens=True)
70
+ print(response)
71
+ ```
72
+
73
+ ## ๐ŸŒ Use Cases
74
+
75
+ - **Spiritual Tourism**: Plan authentic spiritual journeys across India
76
+ - **Wellness Coaching**: Get personalized Ayurvedic and wellness advice
77
+ - **Yoga Practice**: Receive guidance on traditional yoga and meditation
78
+ - **Cultural Education**: Learn about Indian philosophy and traditions
79
+ - **Travel Planning**: Discover cultural and spiritual destinations
80
+ - **Personal Growth**: Integrate ancient wisdom into modern life
81
+
82
+ ## ๐Ÿ“Š Model Performance
83
+
84
+ - **Specialized Knowledge**: Optimized for Indian cultural and spiritual content
85
+ - **Contextual Understanding**: Deep comprehension of Sanskrit terms and concepts
86
+ - **Cultural Sensitivity**: Respectful representation of traditional practices
87
+ - **Practical Guidance**: Actionable advice for modern practitioners
88
+
89
+ ## ๐Ÿ”„ Model Updates
90
+
91
+ - **Version**: Latest stable release
92
+ - **Last Updated**: [Current Date]
93
+ - **Downloads**: 6 downloads in the last month
94
+ - **Community**: Growing user base of spiritual seekers and cultural enthusiasts
95
+
96
+ ## ๐Ÿค Community & Support
97
+
98
+ Join our community of practitioners and developers:
99
+ - Share your experiences with DeepShiva
100
+ - Contribute to model improvement
101
+ - Request new features and capabilities
102
+ - Connect with like-minded spiritual seekers
103
+
104
+ ## ๐Ÿ“„ License
105
+
106
+ This model is released under the MIT License, promoting open access to spiritual and cultural knowledge while respecting traditional wisdom.
107
+
108
+ ## ๐Ÿ™ Acknowledgments
109
+
110
+ We express our gratitude to:
111
+ - The creators of the Sanskrit, Bhagavad Gita, and Ramayana datasets
112
+ - The open-source community for foundational tools
113
+ - Traditional teachers and spiritual practitioners who preserve this knowledge
114
+ - AMD for providing MI300 GPU resources for training
115
+
116
+ ---
117
+
118
+ *DeepShiva - Where Ancient Wisdom Meets Modern AI* ๐Ÿ•‰๏ธ