nisten commited on
Commit
710a57f
1 Parent(s): 0313678

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +155 -0
README.md ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: [meta-llama/Meta-Llama-3-70B-Instruct]
3
+ merge_model: [NousResearch/Hermes-2-Pro-Llama-3-70B]
4
+
5
+ library_name: transformers
6
+ tags:
7
+ - mergekit
8
+ - merge
9
+ license: llama3
10
+ ---
11
+ GGUF Files of nisten/llamagnific-3-87b - a 99layer llama-3-70b frankenstein
12
+
13
+
14
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6379683a81c1783a4a2ddba8/K-ZX8HE_ph5eRlieFbEQj.png)
15
+
16
+
17
+ # base_model: [meta-llama/Meta-Llama-3-70B-Instruct]
18
+ # merge_model: [NousResearch/Hermes-2-Pro-Llama-3-70B]
19
+
20
+ This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
21
+
22
+ ## Merge Details
23
+ ### Merge Method
24
+
25
+ This model was merged using the passthrough merge method.
26
+
27
+ ### Models Merged
28
+
29
+ The following models were included in the merge:
30
+ * /home/admin/meta70
31
+ * /home/admin/hermes2pro
32
+
33
+ ### Configuration
34
+
35
+ The following YAML configuration was used to produce this model:
36
+
37
+ ```yaml
38
+ dtype: bfloat16
39
+ merge_method: passthrough
40
+ slices:
41
+ - sources:
42
+ - layer_range: [0, 15]
43
+ model: /home/admin/meta70
44
+ - sources:
45
+ - layer_range: [10, 69]
46
+ model: /home/admin/hermes2pro
47
+ - sources:
48
+ - layer_range: [55, 80]
49
+ model: /home/admin/meta70
50
+ ```
51
+
52
+ #TEST PROMPT IS LOOKING INTERESTING
53
+ > [!TIP]
54
+ > How to build a city on Mars? via aldrin cycler orbit shipments and calculate in assemblyscript some 64bit accurate orbits and shipments between 2025-2035 , output an actual table dont fluff.
55
+ >
56
+
57
+ ```assembly
58
+ Building a city on Mars is a complex and multi-faceted endeavor that requires a deep understanding of various fields, including orbital mechanics, materials science, and habitat design. Here's a high-level overview of the process, along with some AssemblyScript code to calculate 64-bit accurate orbits and shipments between 2025 and 2035.
59
+
60
+ **Step 1: Orbital Mechanics and Aldrin Cycler**
61
+
62
+ The Aldrin cycler is a type of spacecraft that uses a specific orbit to travel between Earth and Mars, making it an energy-efficient option for transporting people and cargo. The cycler's orbit is designed to have a synodic period (the time it takes to complete one round trip) of approximately 2.14 years, which is close to the Earth-Mars synodic period.
63
+
64
+ To calculate the cycler's orbit, we'll use the vis-viva equation, which relates the orbital velocity of a spacecraft to its position and the central body's gravitational parameter (μ). The equation is:
65
+
66
+ v = sqrt(μ \* (2/r - 1/a))
67
+
68
+ where:
69
+ v = orbital velocity
70
+ μ = standard gravitational parameter (for Earth, μ = 3.986004418e+14 m³/s²)
71
+ r = position vector (distance from the central body)
72
+ a = semi-major axis of the orbit
73
+
74
+ Here's an AssemblyScript function to calculate the cycler's orbit:
75
+
76
+
77
+ (import "env" "console_log" (func $console_log (result i32) (i32)))
78
+
79
+ (memory (import "env" "memory") 1)
80
+
81
+ (data (i32.const 0) "\0A\00\00\00")
82
+
83
+ @; Calculate the cycler's orbit
84
+ @; Args: r (f64) - position vector (distance from the central body)
85
+ @; a (f64) - semi-major axis of the orbit
86
+ @; Returns: v (f64) - orbital velocity
87
+ (func $cycler_orbit (param $r f64) (param $a f64) (result f64)
88
+ (f64.mul
89
+ (f64.const 3.986004418e+14)
90
+ (f64.sub
91
+ (f64.div
92
+ (f64.const 2)
93
+ (f64.copy $r)
94
+ )
95
+ (f64.div
96
+ (f64.const 1)
97
+ (f64.copy $a)
98
+ )
99
+ )
100
+ )
101
+ )
102
+
103
+ @; Example usage: Calculate the cycler's velocity at a position of 1.5 AU
104
+ @; (1 AU = 1.496e+11 m) and a semi-major axis of 2.4 AU
105
+ (f64.print
106
+ (call $cycler_orbit
107
+ (f64.mul (f64.const 1.5) (f64.const 1.496e+11))
108
+ (f64.mul (f64.const 2.4) (f64.const 1.496e+11)))
109
+ )
110
+ )
111
+
112
+
113
+ **Step 2: Assembly and Construction**
114
+
115
+ Once you've calculated the cycler's orbit, you'll need to assemble and construct the city on Mars. This will involve designing habitats, life support systems, and infrastructure to support human habitation.
116
+
117
+ **Step 3: Table of Shipments**
118
+
119
+ To create a table of shipments between 2025 and 2035, you'll need to determine the number of cyclers, the cargo capacity of each cycler, and the frequency of shipments. Here's a simple AssemblyScript function to calculate the total cargo capacity over a given period:
120
+
121
+
122
+ @; Calculate the total cargo capacity over a given period
123
+ @; Args: num_cyclers (i64) - number of cyclers
124
+ @; cargo_capacity (f64) - cargo capacity of each cycler (in tons)
125
+ @; start_year (i64) - start year (e.g., 2025)
126
+ @; end_year (i64) - end year (e.g., 2035)
127
+ @; Returns: total_capacity (f64) - total cargo capacity (in tons)
128
+ (func $total_cargo_capacity (param $num_cyclers i64) (param $cargo_capacity f64) (param $start_year i64) (param $end_year i64) (result f64)
129
+ (f64.mul
130
+ (f64.conv_i64_f64
131
+ (i64.sub
132
+ (get_local $end_year)
133
+ (get_local $start_year)
134
+ )
135
+ )
136
+ (f64.conv_i64_f64
137
+ (get_local $num_cyclers)
138
+ )
139
+ (f64.copy $cargo_capacity)
140
+ )
141
+ )
142
+
143
+ @; Example usage: Calculate the total cargo capacity for 2 cyclers with a capacity of 500 tons each, between 2025 and 2035
144
+ (f64.print
145
+ (call $total_cargo_capacity
146
+ (i64.const 2)
147
+ (f64.const 500)
148
+ (i64.const 2025)
149
+ (i64.const 2035)
150
+ )
151
+ )
152
+
153
+
154
+ This is a high-level overview of the process, and there are many more details to consider when building a city on Mars. However, this should give you a starting point for understanding the orbital mechanics and assembly aspects of the project.
155
+ ```