ibrahim256 commited on
Commit
a45a047
·
verified ·
1 Parent(s): 66f9f0f

Upload mobile/android_config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. mobile/android_config.json +41 -0
mobile/android_config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_config": {
3
+ "name": "AuraMind",
4
+ "version": "1.0.0",
5
+ "variants": [
6
+ "270m",
7
+ "180m",
8
+ "90m"
9
+ ],
10
+ "default_variant": "180m"
11
+ },
12
+ "deployment": {
13
+ "min_android_version": "8.0",
14
+ "min_ram_gb": 2,
15
+ "recommended_ram_gb": 4,
16
+ "storage_requirement_gb": 2,
17
+ "cpu_architecture": [
18
+ "arm64-v8a",
19
+ "armeabi-v7a"
20
+ ]
21
+ },
22
+ "optimization": {
23
+ "quantization": true,
24
+ "half_precision": true,
25
+ "kv_caching": true,
26
+ "batch_size": 1,
27
+ "max_sequence_length": 512
28
+ },
29
+ "modes": {
30
+ "therapist": {
31
+ "temperature": 0.6,
32
+ "max_tokens": 250,
33
+ "top_p": 0.85
34
+ },
35
+ "assistant": {
36
+ "temperature": 0.8,
37
+ "max_tokens": 180,
38
+ "top_p": 0.95
39
+ }
40
+ }
41
+ }