passthepizza commited on
Commit
1107593
Β·
verified Β·
1 Parent(s): 7ba4844

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +77 -10
README.md CHANGED
@@ -1,10 +1,77 @@
1
- ---
2
- title: README
3
- emoji: πŸ’»
4
- colorFrom: red
5
- colorTo: pink
6
- sdk: static
7
- pinned: false
8
- ---
9
-
10
- Edit this `README.md` markdown file to author your organization card.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import React from 'react';
2
+ import { Card, CardHeader, CardContent } from '@/components/ui/card';
3
+ import { Badge } from '@/components/ui/badge';
4
+ import { BrainCircuit, Cpu, Heart } from 'lucide-react';
5
+
6
+ const OrganizationCard = () => {
7
+ return (
8
+ <div className="w-full max-w-4xl mx-auto p-6">
9
+ <Card className="bg-gradient-to-r from-red-500 to-pink-500">
10
+ <CardHeader className="space-y-4">
11
+ <div className="flex items-center justify-between">
12
+ <div className="flex items-center space-x-2">
13
+ <span className="text-4xl">πŸ’»</span>
14
+ <h1 className="text-3xl font-bold text-white">Cakrawala AI</h1>
15
+ </div>
16
+ <Badge className="bg-white/20 text-white hover:bg-white/30">
17
+ SDK: static
18
+ </Badge>
19
+ </div>
20
+ <p className="text-white/90 text-lg italic">
21
+ "Where Worlds Converge and Adventures Begin!"
22
+ </p>
23
+ </CardHeader>
24
+
25
+ <CardContent className="space-y-6 text-white">
26
+ <div className="bg-black/20 rounded-lg p-4">
27
+ <h2 className="text-xl font-semibold mb-3 flex items-center gap-2">
28
+ <BrainCircuit className="h-5 w-5" />
29
+ Latest Models
30
+ </h2>
31
+
32
+ <div className="space-y-4">
33
+ <div className="border-l-4 border-white/30 pl-4">
34
+ <h3 className="text-lg font-semibold">🎭 Cakrawala-70B</h3>
35
+ <p className="text-sm text-white/80 mt-1">
36
+ Fine-tuned variant of Llama-3.1-70B-Instruct optimized for rich roleplaying conversations
37
+ </p>
38
+ <div className="mt-2 flex items-center gap-2">
39
+ <Cpu className="h-4 w-4" />
40
+ <span className="text-sm">8 x H100 NVL GPUs</span>
41
+ </div>
42
+ </div>
43
+
44
+ <div className="border-l-4 border-white/30 pl-4">
45
+ <h3 className="text-lg font-semibold">🎭 Cakrawala-8B</h3>
46
+ <p className="text-sm text-white/80 mt-1">
47
+ Fine-tuned variant of Llama-3.1-8B-Instruct for detailed character interactions
48
+ </p>
49
+ <div className="mt-2 flex items-center gap-2">
50
+ <Cpu className="h-4 w-4" />
51
+ <span className="text-sm">2 x H100 SXM GPUs</span>
52
+ </div>
53
+ </div>
54
+ </div>
55
+ </div>
56
+
57
+ <div className="bg-black/20 rounded-lg p-4">
58
+ <h2 className="text-xl font-semibold mb-3">Training Highlights</h2>
59
+ <ul className="list-disc list-inside space-y-2 text-sm">
60
+ <li>5,867 conversation pairs</li>
61
+ <li>Minimum 12-13 turns per conversation</li>
62
+ <li>Focus on expressions & character consistency</li>
63
+ <li>QLoRA fine-tuning over 3 epochs</li>
64
+ </ul>
65
+ </div>
66
+
67
+ <div className="text-center pt-4 flex items-center justify-center gap-2 text-sm">
68
+ <Heart className="h-4 w-4" />
69
+ <span>Built with love for roleplayers, by roleplayers</span>
70
+ </div>
71
+ </CardContent>
72
+ </Card>
73
+ </div>
74
+ );
75
+ };
76
+
77
+ export default OrganizationCard;