Update README.md
Browse filesadd evaluation highlights
README.md
CHANGED
|
@@ -12,54 +12,71 @@ widget:
|
|
| 12 |
- source_sentence: What is the significance of the IPv6 multicast address ff02::1?
|
| 13 |
sentences:
|
| 14 |
- Felt board for classroom activities
|
| 15 |
-
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
- source_sentence: vein
|
| 26 |
sentences:
|
| 27 |
- blood vessel
|
| 28 |
-
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
|
|
|
|
|
|
| 32 |
- egg-laying
|
| 33 |
- source_sentence: How are special file types determined in file status?
|
| 34 |
sentences:
|
| 35 |
-
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
|
|
|
|
|
|
|
|
|
| 45 |
- Volatility acceptance
|
| 46 |
- source_sentence: mitre
|
| 47 |
sentences:
|
| 48 |
- ocean liner
|
| 49 |
-
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
|
|
|
|
|
|
| 53 |
- Clerical cap
|
| 54 |
- source_sentence: craniofacial
|
| 55 |
sentences:
|
| 56 |
- head and face structure
|
| 57 |
- Planned destruction of structures using explosives or machinery
|
| 58 |
-
-
|
| 59 |
-
|
| 60 |
-
|
|
|
|
| 61 |
pipeline_tag: sentence-similarity
|
| 62 |
library_name: sentence-transformers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
---
|
| 64 |
|
| 65 |
# SentenceTransformer
|
|
@@ -99,6 +116,25 @@ SentenceTransformer(
|
|
| 99 |
)
|
| 100 |
```
|
| 101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
## Usage
|
| 103 |
|
| 104 |
### Direct Usage (Sentence Transformers)
|
|
|
|
| 12 |
- source_sentence: What is the significance of the IPv6 multicast address ff02::1?
|
| 13 |
sentences:
|
| 14 |
- Felt board for classroom activities
|
| 15 |
+
- >-
|
| 16 |
+
In the provided network output, the frequent appearance of
|
| 17 |
+
`ff020000000000000000000000000001` across various interfaces like `lo`,
|
| 18 |
+
`eth0`, and `eth1` indicates that these interfaces are correctly configured
|
| 19 |
+
for basic IPv6 operations. Every active IPv6 interface on a segment must
|
| 20 |
+
listen for messages sent to `ff02::1` to participate in essential link-local
|
| 21 |
+
protocols, making its presence a standard and expected entry.
|
| 22 |
+
- >-
|
| 23 |
+
Not all customizations are supported across all snapd image types or models.
|
| 24 |
+
For example, certain customizations might be unsupported for UC20+ or
|
| 25 |
+
classic models, leading to errors. Additionally, if a gadget snap itself
|
| 26 |
+
defines `defaults` in its `meta/gadget.yaml`, these can be overridden or
|
| 27 |
+
complemented by the `Customizations` provided during the `SetupSeed` call,
|
| 28 |
+
affecting system services like SSH.
|
| 29 |
- source_sentence: vein
|
| 30 |
sentences:
|
| 31 |
- blood vessel
|
| 32 |
+
- >-
|
| 33 |
+
The `hkdf.Key` function requires several inputs: the underlying hash
|
| 34 |
+
function for HMAC (e.g., `sha256.New`), the master `secret` material, an
|
| 35 |
+
optional `salt` value, context-specific `info`, and the desired `keyLen` for
|
| 36 |
+
the output derived key. These parameters collectively guide the key
|
| 37 |
+
derivation process.
|
| 38 |
- egg-laying
|
| 39 |
- source_sentence: How are special file types determined in file status?
|
| 40 |
sentences:
|
| 41 |
+
- >-
|
| 42 |
+
Integrated into the *ensure loop*, the `TaskRunner`'s `Ensure` method is
|
| 43 |
+
invoked periodically to manage task execution. It's responsible for spawning
|
| 44 |
+
goroutines to concurrently execute task handlers, whether for their primary
|
| 45 |
+
'do' logic or their 'undo' logic in case of failures. High-level system
|
| 46 |
+
parts can also trigger its execution proactively using `State.EnsureBefore`.
|
| 47 |
+
- >-
|
| 48 |
+
File type identification within the `fileStat` population involves a
|
| 49 |
+
critical step where the `fs.sys.Mode` value is masked with `syscall.S_IFMT`.
|
| 50 |
+
This operation allows the function to discern whether the file is a block
|
| 51 |
+
device (`S_IFBLK`), a character device (`S_IFCHR`), a named pipe
|
| 52 |
+
(`S_IFIFO`), a socket (`S_IFSOCK`), or a regular file (`S_IFREG`), applying
|
| 53 |
+
the appropriate `FileMode` flags.
|
| 54 |
- Volatility acceptance
|
| 55 |
- source_sentence: mitre
|
| 56 |
sentences:
|
| 57 |
- ocean liner
|
| 58 |
+
- >-
|
| 59 |
+
It becomes necessary because, during the initial `mmap` of an output buffer,
|
| 60 |
+
no code signature typically exists. After the signature is finally created,
|
| 61 |
+
the kernel's cached view might not reflect this change. Therefore,
|
| 62 |
+
`purgeSignatureCache` explicitly clears this cache to prevent problems
|
| 63 |
+
related to stale signature information.
|
| 64 |
- Clerical cap
|
| 65 |
- source_sentence: craniofacial
|
| 66 |
sentences:
|
| 67 |
- head and face structure
|
| 68 |
- Planned destruction of structures using explosives or machinery
|
| 69 |
+
- >-
|
| 70 |
+
Anchor-positive pairs are fundamental to contrastive learning, serving to
|
| 71 |
+
define what the model should consider as semantically similar data points,
|
| 72 |
+
guiding it to learn meaningful representations.
|
| 73 |
pipeline_tag: sentence-similarity
|
| 74 |
library_name: sentence-transformers
|
| 75 |
+
license: gpl-3.0
|
| 76 |
+
language:
|
| 77 |
+
- en
|
| 78 |
+
base_model:
|
| 79 |
+
- unsloth/Qwen3-Embedding-4B
|
| 80 |
---
|
| 81 |
|
| 82 |
# SentenceTransformer
|
|
|
|
| 116 |
)
|
| 117 |
```
|
| 118 |
|
| 119 |
+
## Evaluation Highlights
|
| 120 |
+
### Pre-Post Train Relevancy
|
| 121 |
+

|
| 122 |
+

|
| 123 |
+

|
| 124 |
+

|
| 125 |
+
|
| 126 |
+
### Pre/Post Train Spread
|
| 127 |
+

|
| 128 |
+

|
| 129 |
+

|
| 130 |
+

|
| 131 |
+
|
| 132 |
+
### Spread Summary
|
| 133 |
+

|
| 134 |
+
|
| 135 |
+
### Training Summary
|
| 136 |
+

|
| 137 |
+
|
| 138 |
## Usage
|
| 139 |
|
| 140 |
### Direct Usage (Sentence Transformers)
|