File size: 1,333 Bytes
79938e1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
license: cc-by-4.0
language:
- de
tags:
- embeddings
- curriculum
- education
- german
- sentence-transformers
---

# German Curriculum Concept Embeddings

Sentence embeddings for three focus concepts from the German school curriculum analysis project.

**Model:** `paraphrase-multilingual-mpnet-base-v2`  
**Generated:** 2026-05-10T09:50:17  

## Structure

```
concept/
  embeddings.npy          # float32 (N, 768) L2-normalised
  metadata.parquet        # one row per excerpt, all CSV columns
  metadata_preview.json   # schema + first 5 rows
```

## Concepts

### `mensch`  — 4,852 excerpts · dim=768
### `verhalten`  — 1,155 excerpts · dim=768
### `evolution`  — 1,085 excerpts · dim=768

## Usage

```python
import numpy as np
import pandas as pd
from huggingface_hub import hf_hub_download

concept = 'evolution'

emb_path  = hf_hub_download(
    repo_id="deirdosh/curriculum_embeddings",
    repo_type="dataset",
    filename=f"{concept}/embeddings.npy")

meta_path = hf_hub_download(
    repo_id="deirdosh/curriculum_embeddings",
    repo_type="dataset",
    filename=f"{concept}/metadata.parquet")

embs = np.load(emb_path)          # (N, 768)
meta = pd.read_parquet(meta_path)  # N rows
```

## Source

Generated by the [Concept Atlas Space](https://huggingface.co/spaces/deirdosh/curriculum_analysis_german).