ayoubkirouane commited on
Commit
fd1fbf2
1 Parent(s): c380a1f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md CHANGED
@@ -16,6 +16,14 @@ This is a merge of pre-trained language models created using [mergekit](https://
16
 
17
  This model was merged using the SLERP merge method.
18
 
 
 
 
 
 
 
 
 
19
  ### Models Merged
20
 
21
  The following models were included in the merge:
 
16
 
17
  This model was merged using the SLERP merge method.
18
 
19
+ ### SLERP :
20
+
21
+ SLERP, or Spherical Linear Interpolation, serves as a method for seamlessly interpolating between two vectors while maintaining a consistent rate of change and upholding the geometric properties of the spherical space where the vectors exist.
22
+
23
+ It is favored over traditional linear interpolation, especially in high-dimensional spaces, as linear interpolation can result in a reduction of the interpolated vector's magnitude. In such spaces, the shift in the weights' direction often conveys more meaningful information, such as feature learning and representation, than the magnitude of the change itself. The SLERP implementation involves normalizing the input vectors to unit length, ensuring they signify directions rather than magnitudes. The process calculates the angle between the vectors through their dot product. In cases where the vectors are nearly collinear, it defaults to linear interpolation for efficiency. Otherwise, SLERP computes scale factors based on the interpolation factor (t=0 for 100% of the first vector, t=1 for 100% of the second vector) and the angle between the vectors.
24
+
25
+ These scale factors are utilized to weigh the original vectors, which are then combined to yield the interpolated vector.
26
+
27
  ### Models Merged
28
 
29
  The following models were included in the merge: