hong-niu commited on
Commit
743d3c1
·
verified ·
1 Parent(s): 2d0e093

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md CHANGED
@@ -13,6 +13,13 @@ Here we present the variant level embeddings for large-scale genetic analyis as
13
 
14
  Genetic variants are identified with their chromosome, position (hg38 build), reference allele based on UKB coding, alternate allele based on UKB coding, and their respective LLM embeddings.
15
 
 
 
 
 
 
 
 
16
  ### Dataset Schema (OpenAI text-embedding-3-large)
17
 
18
  | Field | Type | Description |
@@ -22,3 +29,13 @@ Genetic variants are identified with their chromosome, position (hg38 build), re
22
  | `ref_UKB` | string | Reference allele (A, C, G, T) |
23
  | `alt_UKB` | string | Alternate allele (A, C, G, T) |
24
  | `embedding` | list[float]| Embedding vector (dimension 3072, float32) |
 
 
 
 
 
 
 
 
 
 
 
13
 
14
  Genetic variants are identified with their chromosome, position (hg38 build), reference allele based on UKB coding, alternate allele based on UKB coding, and their respective LLM embeddings.
15
 
16
+ Currently we release datasets at two scale:
17
+
18
+ 1. HapMap3 & MEGA (~1.5 million variants, OpenAI GPT-3.5)
19
+ 2. All FAVOR Variants (~9 billion variants, Qwen3-0.6B)
20
+
21
+ With more to come shortly.
22
+
23
  ### Dataset Schema (OpenAI text-embedding-3-large)
24
 
25
  | Field | Type | Description |
 
29
  | `ref_UKB` | string | Reference allele (A, C, G, T) |
30
  | `alt_UKB` | string | Alternate allele (A, C, G, T) |
31
  | `embedding` | list[float]| Embedding vector (dimension 3072, float32) |
32
+
33
+ ### Dataset Schema (Qwen qwen3-embedding-0.6B)
34
+
35
+ | Field | Type | Description |
36
+ |-------------|------------|-------------|
37
+ | `chrom` | string | Chromosome (e.g., `"1"`, `"X"`) |
38
+ | `pos` |string | Base-pair position (hg38 coordinate system) |
39
+ | `ref_UKB` | string | Reference allele (A, C, G, T) |
40
+ | `alt_UKB` | string | Alternate allele (A, C, G, T) |
41
+ | `embedding` | list[float]| Embedding vector (dimension 3072, float32) |