Skip to content
Snippets Groups Projects
Commit 894ef131 authored by Aileen Reichelt's avatar Aileen Reichelt
Browse files

Add DD-GloVe files

parent 154be996
No related branches found
No related tags found
No related merge requests found
Showing
with 1631 additions and 0 deletions
mkdir -p build
gcc -c src/glove.c -o build/glove.o -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
src/glove.c: In function ‘load_init_file’:
src/glove.c:107:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
107 | fread(&array[a], sizeof(real), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘glove_thread’:
src/glove.c:216:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
216 | fread(&cr, sizeof(CREC), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘train_glove’:
src/glove.c:756:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
756 | fread(&def_word_num, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:767:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
767 | fread(&curr_id, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:768:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
768 | fread(&curr_size, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:773:15: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
773 | fread(&(word_to_def[curr_id][i+1]), sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc build/glove.o build/common.o -o build/glove -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
$ /home/students/reichelt/ba/bias-mitigation-ba/DD-GloVe/build/glove -save-file /workspace/students/reichelt/BA/data/dd-glove/vectors_deutscher_ausländer_1iter -threads 32 -input-file /workspace/students/reichelt/BA/data/dd-glove/cooccurrence.shuf.bin -x-max 100 -iter 1 -vector-size 300 -binary 2 -vocab-file /workspace/students/reichelt/BA/data/dd-glove/vocab.txt -verbose 2 -use-def-loss 1 -lambda 0.001 -use-ortho-loss 1 -beta 0.001 -use-proj-loss 1 -gamma 0.05 -seed 42
TRAINING MODEL
Read 1612975968 lines.
Opened definition file
Building definition lists...
Initializing parameters...Using random seed 42
done.
vector size: 300
vocab size: 400000
x_max: 100.000000
alpha: 0.750000
use_def_loss: 1
use_ortho_loss: 1
use_proj_loss: 1
lambda: 0.001000000
beta: 0.001000000
gamma: 0.050000000
MALE index: 60
FEMALE index: 9226
10 girls words (id): 9226, 23315, 48057, 74166, 74750, 100067, 115724, 118421, 158142, 182498,
10 boys words (id): 60, 130, 51815, 68091, 106323, 155515, 171755, 213204, 292604, 358249,
08/25/23 - 01:32.15AM, iter: 001, glove_cost: 0.024489, def_cost: 8.742632, ortho_cost: 0.313535, context_ortho_cost: 0.326759, proj_cost: 0.307762
mkdir -p build
gcc -c src/glove.c -o build/glove.o -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
src/glove.c: In function ‘load_init_file’:
src/glove.c:107:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
107 | fread(&array[a], sizeof(real), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘glove_thread’:
src/glove.c:216:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
216 | fread(&cr, sizeof(CREC), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘train_glove’:
src/glove.c:756:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
756 | fread(&def_word_num, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:767:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
767 | fread(&curr_id, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:768:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
768 | fread(&curr_size, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:773:15: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
773 | fread(&(word_to_def[curr_id][i+1]), sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc build/glove.o build/common.o -o build/glove -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
$ /home/students/reichelt/ba/bias-mitigation-ba/DD-GloVe/build/glove -save-file /workspace/students/reichelt/BA/data/dd-glove/vectors_deutscher_ausländer_top10 -threads 32 -input-file /workspace/students/reichelt/BA/data/dd-glove/cooccurrence.shuf.bin -x-max 100 -iter 20 -vector-size 300 -binary 2 -vocab-file /workspace/students/reichelt/BA/data/dd-glove/vocab.txt -verbose 2 -use-def-loss 1 -lambda 0.001 -use-ortho-loss 1 -beta 0.001 -use-proj-loss 1 -gamma 0.05 -seed 42
TRAINING MODEL
Read 1612975968 lines.
Opened definition file
Building definition lists...
Initializing parameters...Using random seed 42
done.
vector size: 300
vocab size: 400000
x_max: 100.000000
alpha: 0.750000
use_def_loss: 1
use_ortho_loss: 1
use_proj_loss: 1
lambda: 0.001000000
beta: 0.001000000
gamma: 0.050000000
MALE index: 60
FEMALE index: 9226
10 girls words (id): 9226, 23315, 48057, 74166, 74750, 100067, 115724, 118421, 158142, 182498,
10 boys words (id): 60, 130, 51815, 68091, 106323, 155515, 171755, 213204, 292604, 358249,
08/25/23 - 02:11.08AM, iter: 001, glove_cost: 0.024486, def_cost: 8.889090, ortho_cost: 0.357260, context_ortho_cost: 0.366417, proj_cost: 0.298285
10 girls words (id): 21549, 47617, 55702, 98100, 141072, 198233, 209099, 260702, 289223, 325380,
10 boys words (id): 5723, 16144, 16942, 22969, 26190, 63715, 131803, 183075, 213204, 230527,
08/25/23 - 02:27.10AM, iter: 002, glove_cost: 0.016187, def_cost: 11.336639, ortho_cost: 1.240580, context_ortho_cost: 1.265384, proj_cost: 0.271909
10 girls words (id): 9226, 21812, 27929, 58593, 152203, 225017, 234950, 236126, 258027, 299567,
10 boys words (id): 16942, 22969, 26190, 30741, 63715, 131803, 183075, 213204, 230527, 239184,
08/25/23 - 02:43.01AM, iter: 003, glove_cost: 0.013208, def_cost: 12.797412, ortho_cost: 2.190056, context_ortho_cost: 2.218666, proj_cost: 0.195842
10 girls words (id): 9226, 14344, 21812, 73739, 152203, 197165, 234950, 236126, 258027, 393758,
10 boys words (id): 60, 16942, 22969, 26190, 30741, 63715, 131803, 183075, 213204, 230527,
08/25/23 - 02:58.50AM, iter: 004, glove_cost: 0.011636, def_cost: 13.628941, ortho_cost: 2.907994, context_ortho_cost: 2.952259, proj_cost: 0.191755
10 girls words (id): 9226, 21812, 86588, 136831, 152203, 197165, 234950, 258027, 374813, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 63715, 131803, 183075, 230527, 239184,
08/25/23 - 03:14.39AM, iter: 005, glove_cost: 0.010679, def_cost: 14.182186, ortho_cost: 3.475672, context_ortho_cost: 3.523808, proj_cost: 0.188521
10 girls words (id): 9226, 73739, 93217, 152203, 158142, 197165, 225017, 234950, 258027, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 63715, 131803, 183075, 213204, 230527,
08/25/23 - 03:30.34AM, iter: 006, glove_cost: 0.010047, def_cost: 14.603496, ortho_cost: 3.942534, context_ortho_cost: 3.998224, proj_cost: 0.190407
10 girls words (id): 9226, 14344, 73739, 152203, 158142, 197165, 234950, 247759, 258027, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 63715, 131803, 183075, 213204, 230527,
08/25/23 - 03:46.28AM, iter: 007, glove_cost: 0.009588, def_cost: 14.915628, ortho_cost: 4.314709, context_ortho_cost: 4.371996, proj_cost: 0.163701
10 girls words (id): 9226, 50364, 93217, 152203, 158142, 197165, 234950, 247759, 258027, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 44699, 63715, 183075, 213204, 230527,
08/25/23 - 04:02.32AM, iter: 008, glove_cost: 0.009277, def_cost: 15.161369, ortho_cost: 4.640566, context_ortho_cost: 4.717416, proj_cost: 0.191363
10 girls words (id): 9226, 14344, 158142, 176484, 197165, 234950, 247759, 258027, 268334, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 51815, 63715, 183075, 213204, 230527,
08/25/23 - 04:18.19AM, iter: 009, glove_cost: 0.009048, def_cost: 15.367541, ortho_cost: 4.918548, context_ortho_cost: 4.998279, proj_cost: 0.167393
10 girls words (id): 9226, 14344, 123910, 158142, 197165, 225452, 234950, 258027, 268334, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 44699, 63715, 183075, 213204, 230527,
08/25/23 - 04:34.18AM, iter: 010, glove_cost: 0.008836, def_cost: 15.552681, ortho_cost: 5.171641, context_ortho_cost: 5.251921, proj_cost: 0.169931
10 girls words (id): 9226, 158142, 197165, 202483, 225452, 234950, 247759, 258027, 268334, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 51815, 63715, 183075, 213204, 230527,
08/25/23 - 04:50.09AM, iter: 011, glove_cost: 0.008693, def_cost: 15.719580, ortho_cost: 5.397158, context_ortho_cost: 5.494118, proj_cost: 0.191012
10 girls words (id): 9226, 158142, 197165, 202483, 225452, 234950, 247759, 258027, 268334, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 51815, 63715, 183075, 213204, 230527,
08/25/23 - 05:06.03AM, iter: 012, glove_cost: 0.008563, def_cost: 15.868202, ortho_cost: 5.598580, context_ortho_cost: 5.712181, proj_cost: 0.176035
10 girls words (id): 9226, 158142, 197165, 202483, 225452, 234950, 247759, 258027, 268334, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 51815, 63715, 183075, 213204, 230527,
08/25/23 - 05:22.06AM, iter: 013, glove_cost: 0.008463, def_cost: 16.009734, ortho_cost: 5.791415, context_ortho_cost: 5.912694, proj_cost: 0.171906
10 girls words (id): 9226, 158142, 197165, 202483, 225452, 234950, 247759, 258027, 268334, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 51815, 63715, 183075, 213204, 230527,
08/25/23 - 05:38.03AM, iter: 014, glove_cost: 0.008386, def_cost: 16.108001, ortho_cost: 5.954953, context_ortho_cost: 6.078050, proj_cost: 0.162920
10 girls words (id): 9226, 158142, 197165, 202483, 225452, 234950, 247759, 258027, 268334, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 51815, 63715, 183075, 213204, 230527,
08/25/23 - 05:53.50AM, iter: 015, glove_cost: 0.008304, def_cost: 16.217364, ortho_cost: 6.109559, context_ortho_cost: 6.236578, proj_cost: 0.167809
10 girls words (id): 9226, 14344, 158142, 202483, 225017, 258027, 268334, 302122, 340752, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 44699, 63715, 183075, 213204, 230527,
08/25/23 - 06:09.49AM, iter: 016, glove_cost: 0.008241, def_cost: 16.289017, ortho_cost: 6.243312, context_ortho_cost: 6.343895, proj_cost: 0.156228
10 girls words (id): 9226, 14344, 158142, 202483, 225017, 258027, 268334, 302122, 340752, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 44699, 63715, 183075, 213204, 230527,
08/25/23 - 06:25.36AM, iter: 017, glove_cost: 0.008174, def_cost: 16.359045, ortho_cost: 6.360470, context_ortho_cost: 6.467474, proj_cost: 0.178326
10 girls words (id): 9226, 14344, 158142, 202483, 225017, 258027, 268334, 302122, 340752, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 44699, 63715, 183075, 213204, 230527,
08/25/23 - 06:41.37AM, iter: 018, glove_cost: 0.008111, def_cost: 16.435525, ortho_cost: 6.483256, context_ortho_cost: 6.596933, proj_cost: 0.159693
10 girls words (id): 9226, 14344, 158142, 202483, 225017, 258027, 268334, 302122, 340752, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 44699, 63715, 183075, 213204, 230527,
08/25/23 - 06:57.22AM, iter: 019, glove_cost: 0.008064, def_cost: 16.503791, ortho_cost: 6.587645, context_ortho_cost: 6.698036, proj_cost: 0.160435
10 girls words (id): 9226, 14344, 158142, 202483, 225017, 258027, 268334, 302122, 340752, 393758,
10 boys words (id): 60, 5723, 16942, 26190, 30741, 44699, 63715, 183075, 213204, 230527,
08/25/23 - 07:13.14AM, iter: 020, glove_cost: 0.008038, def_cost: 16.559257, ortho_cost: 6.689269, context_ortho_cost: 6.809974, proj_cost: 0.153703
mkdir -p build
gcc -c src/glove.c -o build/glove.o -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
src/glove.c: In function ‘load_init_file’:
src/glove.c:107:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
107 | fread(&array[a], sizeof(real), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘glove_thread’:
src/glove.c:216:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
216 | fread(&cr, sizeof(CREC), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘train_glove’:
src/glove.c:756:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
756 | fread(&def_word_num, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:767:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
767 | fread(&curr_id, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:768:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
768 | fread(&curr_size, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:773:15: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
773 | fread(&(word_to_def[curr_id][i+1]), sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc build/glove.o build/common.o -o build/glove -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
$ /home/students/reichelt/ba/bias-mitigation-ba/DD-GloVe/build/glove -save-file /workspace/students/reichelt/BA/data/dd-glove/vectors_deutscher_türke_gloss5 -threads 32 -input-file /workspace/students/reichelt/BA/data/dd-glove/cooccurrence.shuf.bin -x-max 100 -iter 1 -vector-size 300 -binary 2 -vocab-file /workspace/students/reichelt/BA/data/dd-glove/vocab.txt -verbose 2 -use-def-loss 1 -lambda 0.001 -use-ortho-loss 1 -beta 0.001 -use-proj-loss 1 -gamma 0.05 -seed 42
TRAINING MODEL
Read 1612975968 lines.
Opened definition file
Building definition lists...
Initializing parameters...Using random seed 42
done.
vector size: 300
vocab size: 400000
x_max: 100.000000
alpha: 0.750000
use_def_loss: 1
use_ortho_loss: 1
use_proj_loss: 1
lambda: 0.001000000
beta: 0.001000000
gamma: 0.050000000
MALE index: 60
FEMALE index: 12204
10 girls words (id): 12204, 12958, 60351, 96136, 135245, 144544, 180666, 284292, 364724, 372648,
10 boys words (id): 60, 130, 1566, 30741, 63715, 68091, 91200, 232876, 303124, 358249,
08/25/23 - 01:20.43AM, iter: 001, glove_cost: 0.024491, def_cost: 8.883560, ortho_cost: 0.358425, context_ortho_cost: 0.377477, proj_cost: 0.527199
mkdir -p build
gcc -c src/glove.c -o build/glove.o -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
src/glove.c: In function ‘load_init_file’:
src/glove.c:107:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
107 | fread(&array[a], sizeof(real), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘glove_thread’:
src/glove.c:216:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
216 | fread(&cr, sizeof(CREC), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘train_glove’:
src/glove.c:756:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
756 | fread(&def_word_num, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:767:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
767 | fread(&curr_id, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:768:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
768 | fread(&curr_size, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:773:15: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
773 | fread(&(word_to_def[curr_id][i+1]), sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc build/glove.o build/common.o -o build/glove -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
$ /home/students/reichelt/ba/bias-mitigation-ba/DD-GloVe/build/glove -save-file /workspace/students/reichelt/BA/data/dd-glove/vectors_deutscher_türke_top10 -threads 32 -input-file /workspace/students/reichelt/BA/data/dd-glove/cooccurrence.shuf.bin -x-max 100 -iter 20 -vector-size 300 -binary 2 -vocab-file /workspace/students/reichelt/BA/data/dd-glove/vocab.txt -verbose 2 -use-def-loss 1 -lambda 0.001 -use-ortho-loss 1 -beta 0.001 -use-proj-loss 1 -gamma 0.05 -seed 42
TRAINING MODEL
Read 1612975968 lines.
Opened definition file
Building definition lists...
Initializing parameters...Using random seed 42
done.
vector size: 300
vocab size: 400000
x_max: 100.000000
alpha: 0.750000
use_def_loss: 1
use_ortho_loss: 1
use_proj_loss: 1
lambda: 0.001000000
beta: 0.001000000
gamma: 0.050000000
MALE index: 60
FEMALE index: 12204
10 girls words (id): 12204, 12958, 60351, 96136, 135245, 144544, 180666, 284292, 364724, 372648,
10 boys words (id): 60, 130, 1566, 30741, 63715, 68091, 91200, 232876, 303124, 358249,
08/25/23 - 02:12.40AM, iter: 001, glove_cost: 0.024491, def_cost: 8.856998, ortho_cost: 0.355882, context_ortho_cost: 0.376121, proj_cost: 0.562321
10 girls words (id): 9403, 17269, 28163, 93642, 118555, 125351, 228760, 247875, 286882, 289770,
10 boys words (id): 60, 16144, 24688, 24996, 52507, 118179, 322712, 347504, 363631, 384818,
08/25/23 - 02:28.37AM, iter: 002, glove_cost: 0.016195, def_cost: 11.311446, ortho_cost: 1.252456, context_ortho_cost: 1.286748, proj_cost: 0.331975
10 girls words (id): 17085, 28423, 53579, 85901, 125657, 135245, 197165, 306875, 371056, 373283,
9 boys words (id): 60, 130, 9471, 22106, 63715, 115894, 214333, 322712, 363631,
08/25/23 - 02:44.25AM, iter: 003, glove_cost: 0.013451, def_cost: 12.805616, ortho_cost: 2.219702, context_ortho_cost: 2.274251, proj_cost: 0.236318
10 girls words (id): 20746, 28423, 53579, 85901, 125657, 135245, 197165, 334656, 371056, 373605,
10 boys words (id): 60, 130, 24996, 26190, 63715, 162128, 183075, 285645, 322712, 363631,
08/25/23 - 03:00.48AM, iter: 004, glove_cost: 0.011759, def_cost: 13.660814, ortho_cost: 2.951984, context_ortho_cost: 3.013063, proj_cost: 0.170428
10 girls words (id): 17085, 28423, 37749, 53579, 125657, 135245, 197165, 218876, 250291, 371056,
9 boys words (id): 60, 130, 22106, 63715, 115894, 162128, 285645, 322712, 363631,
08/25/23 - 03:16.45AM, iter: 005, glove_cost: 0.010760, def_cost: 14.203024, ortho_cost: 3.514058, context_ortho_cost: 3.588900, proj_cost: 0.166661
10 girls words (id): 20746, 28423, 37749, 85901, 125657, 197165, 198978, 234950, 250291, 373605,
10 boys words (id): 60, 130, 22106, 24996, 63715, 162128, 213204, 285645, 322712, 363631,
08/25/23 - 03:32.34AM, iter: 006, glove_cost: 0.010104, def_cost: 14.588806, ortho_cost: 3.956758, context_ortho_cost: 4.043040, proj_cost: 0.163097
10 girls words (id): 12204, 53579, 85901, 125657, 197165, 198978, 234950, 250291, 371056, 373605,
10 boys words (id): 60, 130, 22106, 26190, 63715, 162128, 183075, 213204, 322712, 363631,
08/25/23 - 03:48.32AM, iter: 007, glove_cost: 0.009645, def_cost: 14.902840, ortho_cost: 4.327842, context_ortho_cost: 4.419956, proj_cost: 0.168574
10 girls words (id): 12204, 20746, 21885, 37749, 53579, 125657, 197165, 198978, 250291, 371056,
10 boys words (id): 60, 130, 22106, 26190, 63715, 162128, 183075, 213204, 285645, 363631,
08/25/23 - 04:04.18AM, iter: 008, glove_cost: 0.009342, def_cost: 15.121135, ortho_cost: 4.640926, context_ortho_cost: 4.728810, proj_cost: 0.146937
10 girls words (id): 12204, 20746, 23272, 53579, 85901, 125657, 197165, 198978, 250291, 371703,
10 boys words (id): 60, 130, 1216, 22106, 26190, 63715, 162128, 183075, 213204, 363631,
08/25/23 - 04:20.15AM, iter: 009, glove_cost: 0.009058, def_cost: 15.340890, ortho_cost: 4.919165, context_ortho_cost: 5.033283, proj_cost: 0.183933
10 girls words (id): 12204, 21885, 53579, 63057, 125657, 150097, 197165, 198978, 250291, 371056,
10 boys words (id): 60, 130, 16942, 22106, 26190, 63715, 162128, 183075, 213204, 363631,
08/25/23 - 04:36.01AM, iter: 010, glove_cost: 0.008877, def_cost: 15.515099, ortho_cost: 5.165199, context_ortho_cost: 5.280660, proj_cost: 0.147773
10 girls words (id): 12204, 20746, 23272, 53579, 85901, 125657, 197165, 198978, 228760, 250291,
10 boys words (id): 60, 130, 22106, 26190, 63715, 162128, 183075, 213204, 358249, 363631,
08/25/23 - 04:51.55AM, iter: 011, glove_cost: 0.008721, def_cost: 15.637385, ortho_cost: 5.378206, context_ortho_cost: 5.476506, proj_cost: 0.142646
10 girls words (id): 12204, 20746, 23272, 53579, 85901, 125657, 197165, 198978, 228760, 250291,
10 boys words (id): 60, 130, 22106, 26190, 63715, 162128, 183075, 213204, 358249, 363631,
08/25/23 - 05:07.50AM, iter: 012, glove_cost: 0.008564, def_cost: 15.762064, ortho_cost: 5.573569, context_ortho_cost: 5.669101, proj_cost: 0.144326
10 girls words (id): 12204, 20746, 23272, 53579, 85901, 125657, 197165, 198978, 228760, 250291,
10 boys words (id): 60, 130, 22106, 26190, 63715, 162128, 183075, 213204, 358249, 363631,
08/25/23 - 05:23.41AM, iter: 013, glove_cost: 0.008462, def_cost: 15.872049, ortho_cost: 5.749739, context_ortho_cost: 5.841379, proj_cost: 0.147216
10 girls words (id): 12204, 20746, 23272, 53579, 85901, 125657, 197165, 198978, 228760, 250291,
10 boys words (id): 60, 130, 22106, 26190, 63715, 162128, 183075, 213204, 358249, 363631,
08/25/23 - 05:39.45AM, iter: 014, glove_cost: 0.008355, def_cost: 15.973991, ortho_cost: 5.905923, context_ortho_cost: 6.000210, proj_cost: 0.142029
10 girls words (id): 12204, 20746, 23272, 53579, 85901, 125657, 197165, 198978, 228760, 250291,
10 boys words (id): 60, 130, 22106, 26190, 63715, 162128, 183075, 213204, 358249, 363631,
08/25/23 - 05:55.36AM, iter: 015, glove_cost: 0.008277, def_cost: 16.057654, ortho_cost: 6.055811, context_ortho_cost: 6.144939, proj_cost: 0.139400
10 girls words (id): 12204, 21266, 21885, 43619, 125657, 150097, 197165, 198978, 228760, 250291,
10 boys words (id): 60, 130, 12175, 22106, 34578, 63715, 162128, 213204, 358249, 363631,
08/25/23 - 06:11.28AM, iter: 016, glove_cost: 0.008201, def_cost: 16.137112, ortho_cost: 6.172060, context_ortho_cost: 6.273944, proj_cost: 0.167582
10 girls words (id): 12204, 21266, 21885, 43619, 125657, 150097, 197165, 198978, 228760, 250291,
10 boys words (id): 60, 130, 12175, 22106, 34578, 63715, 162128, 213204, 358249, 363631,
08/25/23 - 06:26.57AM, iter: 017, glove_cost: 0.008164, def_cost: 16.225286, ortho_cost: 6.304372, context_ortho_cost: 6.416719, proj_cost: 0.159468
10 girls words (id): 12204, 21266, 21885, 43619, 125657, 150097, 197165, 198978, 228760, 250291,
10 boys words (id): 60, 130, 12175, 22106, 34578, 63715, 162128, 213204, 358249, 363631,
08/25/23 - 06:42.43AM, iter: 018, glove_cost: 0.008105, def_cost: 16.297032, ortho_cost: 6.419616, context_ortho_cost: 6.537435, proj_cost: 0.152865
10 girls words (id): 12204, 21266, 21885, 43619, 125657, 150097, 197165, 198978, 228760, 250291,
10 boys words (id): 60, 130, 12175, 22106, 34578, 63715, 162128, 213204, 358249, 363631,
08/25/23 - 06:58.32AM, iter: 019, glove_cost: 0.008050, def_cost: 16.359567, ortho_cost: 6.526110, context_ortho_cost: 6.645736, proj_cost: 0.156093
10 girls words (id): 12204, 21266, 21885, 43619, 125657, 150097, 197165, 198978, 228760, 250291,
10 boys words (id): 60, 130, 12175, 22106, 34578, 63715, 162128, 213204, 358249, 363631,
08/25/23 - 07:14.30AM, iter: 020, glove_cost: 0.007990, def_cost: 16.415100, ortho_cost: 6.623221, context_ortho_cost: 6.741158, proj_cost: 0.151385
mkdir -p build
gcc -c src/glove.c -o build/glove.o -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
src/glove.c: In function ‘load_init_file’:
src/glove.c:107:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
107 | fread(&array[a], sizeof(real), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘glove_thread’:
src/glove.c:216:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
216 | fread(&cr, sizeof(CREC), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘train_glove’:
src/glove.c:756:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
756 | fread(&def_word_num, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:767:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
767 | fread(&curr_id, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:768:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
768 | fread(&curr_size, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:773:15: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
773 | fread(&(word_to_def[curr_id][i+1]), sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc build/glove.o build/common.o -o build/glove -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
$ /home/students/reichelt/ba/bias-mitigation-ba/DD-GloVe/build/glove -save-file /workspace/students/reichelt/BA/data/dd-glove/vectors_gender_cap30000_top10 -threads 32 -input-file /workspace/students/reichelt/BA/data/dd-glove/cooccurrence.shuf.bin -x-max 100 -iter 1 -vector-size 300 -binary 2 -vocab-file /workspace/students/reichelt/BA/data/dd-glove/vocab.txt -verbose 2 -use-def-loss 1 -lambda 0.001 -use-ortho-loss 1 -beta 0.001 -use-proj-loss 1 -gamma 0.2 -seed 42
TRAINING MODEL
Read 1612975968 lines.
Opened definition file
Building definition lists...
Initializing parameters...Using random seed 42
done.
vector size: 300
vocab size: 400000
x_max: 100.000000
alpha: 0.750000
use_def_loss: 1
use_ortho_loss: 1
use_proj_loss: 1
lambda: 0.001000000
beta: 0.001000000
gamma: 0.200000000
MALE index: 88
FEMALE index: 211
10 girls words (id): 28, 211, 1196, 1254, 1486, 1701, 5237, 10296, 10304, 19108,
10 boys words (id): 10, 88, 573, 1165, 1949, 2241, 7281, 7407, 23959, 26589,
08/16/23 - 07:30.33PM, iter: 001, glove_cost: 0.024502, def_cost: 8.352455, ortho_cost: 0.344849, context_ortho_cost: 0.367556, proj_cost: 0.843610
mkdir -p build
gcc -c src/glove.c -o build/glove.o -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
src/glove.c: In function ‘load_init_file’:
src/glove.c:107:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
107 | fread(&array[a], sizeof(real), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘glove_thread’:
src/glove.c:216:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
216 | fread(&cr, sizeof(CREC), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘train_glove’:
src/glove.c:755:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
755 | fread(&def_word_num, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:766:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
766 | fread(&curr_id, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:767:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
767 | fread(&curr_size, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:772:15: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
772 | fread(&(word_to_def[curr_id][i+1]), sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc build/glove.o build/common.o -o build/glove -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
$ /home/students/reichelt/ba/bias-mitigation-ba/DD-GloVe/build/glove -save-file /workspace/students/reichelt/BA/data/dd-glove/vectors_gender_cap30000 -threads 32 -input-file /workspace/students/reichelt/BA/data/dd-glove/cooccurrence.shuf.bin -x-max 100 -iter 1 -vector-size 300 -binary 2 -vocab-file /workspace/students/reichelt/BA/data/dd-glove/vocab.txt -verbose 2 -use-def-loss 1 -lambda 0.001 -use-ortho-loss 1 -beta 0.001 -use-proj-loss 1 -gamma 0.2 -seed 42
TRAINING MODEL
Read 1612975968 lines.
Opened definition file
Building definition lists...
Initializing parameters...Using random seed 42
done.
vector size: 300
vocab size: 400000
x_max: 100.000000
alpha: 0.750000
use_def_loss: 1
use_ortho_loss: 1
use_proj_loss: 1
lambda: 0.001000000
beta: 0.001000000
gamma: 0.200000000
MALE index: 88
FEMALE index: 211
30 girls words (id): 28, 211, 1196, 1254, 1256, 1486, 1701, 3829, 5237, 6031, 7064, 7439, 7660, 9310, 9918, 10296, 10304, 11360, 14293, 16010, 18120, 18503, 19108, 19773, 19803, 25174, 27240, 27746, 27907, 28009,
30 boys words (id): 10, 88, 573, 1165, 1949, 2157, 2241, 2303, 3775, 7281, 7361, 7407, 7450, 7482, 7907, 9410, 11882, 11939, 15593, 16705, 17573, 22259, 22438, 23959, 24481, 25441, 26589, 29199, 29328, 29590,
08/16/23 - 06:42.53PM, iter: 001, glove_cost: 0.024501, def_cost: 8.379469, ortho_cost: 0.348447, context_ortho_cost: 0.360655, proj_cost: 0.798561
mkdir -p build
gcc -c src/glove.c -o build/glove.o -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
src/glove.c: In function ‘load_init_file’:
src/glove.c:107:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
107 | fread(&array[a], sizeof(real), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘glove_thread’:
src/glove.c:216:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
216 | fread(&cr, sizeof(CREC), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘train_glove’:
src/glove.c:756:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
756 | fread(&def_word_num, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:767:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
767 | fread(&curr_id, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:768:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
768 | fread(&curr_size, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:773:15: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
773 | fread(&(word_to_def[curr_id][i+1]), sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc build/glove.o build/common.o -o build/glove -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
$ /home/students/reichelt/ba/bias-mitigation-ba/DD-GloVe/build/glove -save-file /workspace/students/reichelt/BA/data/dd-glove/vectors_gender_custom_def -threads 32 -input-file /workspace/students/reichelt/BA/data/dd-glove/cooccurrence.shuf.bin -x-max 100 -iter 1 -vector-size 300 -binary 2 -vocab-file /workspace/students/reichelt/BA/data/dd-glove/vocab.txt -verbose 2 -use-def-loss 1 -lambda 0.001 -use-ortho-loss 1 -beta 0.001 -use-proj-loss 1 -gamma 0.2 -seed 42
TRAINING MODEL
Read 1612975968 lines.
Opened definition file
Building definition lists...
Initializing parameters...Using random seed 42
done.
vector size: 300
vocab size: 400000
x_max: 100.000000
alpha: 0.750000
use_def_loss: 1
use_ortho_loss: 1
use_proj_loss: 1
lambda: 0.001000000
beta: 0.001000000
gamma: 0.200000000
MALE index: 88
FEMALE index: 211
30 girls words (id): 211, 6892, 7774, 16554, 22194, 26673, 30605, 39488, 40510, 40815, 44543, 60446, 70242, 83002, 86538, 93319, 96524, 103124, 104741, 113405, 115633, 132604, 151764, 212171, 225986, 230987, 235360, 302454, 354449, 360914,
30 boys words (id): 88, 3361, 18422, 21635, 30338, 44916, 45105, 58273, 59948, 62058, 67401, 82470, 92823, 102943, 103959, 115088, 118675, 119377, 140318, 173664, 183686, 184080, 186510, 194589, 201095, 237830, 266771, 341260, 342111, 354354,
08/24/23 - 10:33.09PM, iter: 001, glove_cost: 0.024495, def_cost: 8.770339, ortho_cost: 0.362764, context_ortho_cost: 0.365069, proj_cost: 0.647450
mkdir -p build
gcc -c src/glove.c -o build/glove.o -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
src/glove.c: In function ‘load_init_file’:
src/glove.c:107:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
107 | fread(&array[a], sizeof(real), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘glove_thread’:
src/glove.c:216:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
216 | fread(&cr, sizeof(CREC), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘train_glove’:
src/glove.c:756:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
756 | fread(&def_word_num, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:767:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
767 | fread(&curr_id, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:768:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
768 | fread(&curr_size, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:773:15: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
773 | fread(&(word_to_def[curr_id][i+1]), sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc build/glove.o build/common.o -o build/glove -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
$ /home/students/reichelt/ba/bias-mitigation-ba/DD-GloVe/build/glove -save-file /workspace/students/reichelt/BA/data/dd-glove/vectors_gender_full_def -threads 32 -input-file /workspace/students/reichelt/BA/data/dd-glove/cooccurrence.shuf.bin -x-max 100 -iter 1 -vector-size 300 -binary 2 -vocab-file /workspace/students/reichelt/BA/data/dd-glove/vocab.txt -verbose 2 -use-def-loss 1 -lambda 0.001 -use-ortho-loss 1 -beta 0.001 -use-proj-loss 1 -gamma 0.2 -seed 42
TRAINING MODEL
Read 1612975968 lines.
Opened definition file
Building definition lists...
Initializing parameters...Using random seed 42
done.
vector size: 300
vocab size: 400000
x_max: 100.000000
alpha: 0.750000
use_def_loss: 1
use_ortho_loss: 1
use_proj_loss: 1
lambda: 0.001000000
beta: 0.001000000
gamma: 0.200000000
MALE index: 88
FEMALE index: 211
30 girls words (id): 28, 211, 1486, 1701, 1949, 6892, 10526, 32417, 33890, 39250, 42184, 43576, 53557, 54665, 57406, 72566, 78180, 90126, 108625, 119641, 166331, 170172, 172417, 236714, 239701, 283166, 323073, 327339, 329266, 362413,
30 boys words (id): 88, 2303, 3361, 10655, 13768, 32648, 39921, 74612, 74812, 75404, 86098, 87610, 96950, 100228, 118914, 132137, 141065, 174967, 176994, 179168, 200593, 213239, 213504, 226296, 283777, 298746, 335620, 347492, 361247, 380012,
08/16/23 - 08:14.22PM, iter: 001, glove_cost: 0.024523, def_cost: 8.637469, ortho_cost: 0.374078, context_ortho_cost: 0.424632, proj_cost: 0.806380
mkdir -p build
gcc -c src/glove.c -o build/glove.o -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
src/glove.c: In function ‘load_init_file’:
src/glove.c:107:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
107 | fread(&array[a], sizeof(real), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘glove_thread’:
src/glove.c:216:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
216 | fread(&cr, sizeof(CREC), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘train_glove’:
src/glove.c:756:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
756 | fread(&def_word_num, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:767:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
767 | fread(&curr_id, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:768:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
768 | fread(&curr_size, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:773:15: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
773 | fread(&(word_to_def[curr_id][i+1]), sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc build/glove.o build/common.o -o build/glove -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
$ /home/students/reichelt/ba/bias-mitigation-ba/DD-GloVe/build/glove -save-file /workspace/students/reichelt/BA/data/dd-glove/vectors_gender_less_stopwords -threads 32 -input-file /workspace/students/reichelt/BA/data/dd-glove/cooccurrence.shuf.bin -x-max 100 -iter 1 -vector-size 300 -binary 2 -vocab-file /workspace/students/reichelt/BA/data/dd-glove/vocab.txt -verbose 2 -use-def-loss 1 -lambda 0.001 -use-ortho-loss 1 -beta 0.001 -use-proj-loss 1 -gamma 0.2 -seed 42
TRAINING MODEL
Read 1612975968 lines.
Opened definition file
Building definition lists...
Initializing parameters...Using random seed 42
done.
vector size: 300
vocab size: 400000
x_max: 100.000000
alpha: 0.750000
use_def_loss: 1
use_ortho_loss: 1
use_proj_loss: 1
lambda: 0.001000000
beta: 0.001000000
gamma: 0.200000000
MALE index: 88
FEMALE index: 211
10 girls words (id): 211, 1486, 6892, 32417, 33890, 53557, 78180, 170172, 249338, 362413,
9 boys words (id): 88, 2303, 3361, 74612, 86098, 92243, 132137, 279331, 347492,
08/25/23 - 01:35.14AM, iter: 001, glove_cost: 0.024513, def_cost: 8.715401, ortho_cost: 0.314692, context_ortho_cost: 0.322874, proj_cost: 0.599305
mkdir -p build
gcc -c src/glove.c -o build/glove.o -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
src/glove.c: In function ‘load_init_file’:
src/glove.c:107:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
107 | fread(&array[a], sizeof(real), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘glove_thread’:
src/glove.c:216:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
216 | fread(&cr, sizeof(CREC), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘train_glove’:
src/glove.c:755:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
755 | fread(&def_word_num, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:766:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
766 | fread(&curr_id, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:767:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
767 | fread(&curr_size, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:772:15: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
772 | fread(&(word_to_def[curr_id][i+1]), sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc build/glove.o build/common.o -o build/glove -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
$ /home/students/reichelt/ba/bias-mitigation-ba/DD-GloVe/build/glove -save-file /workspace/students/reichelt/BA/data/dd-glove/vectors_gender_order_swapped -threads 32 -input-file /workspace/students/reichelt/BA/data/dd-glove/cooccurrence.shuf.bin -x-max 100 -iter 1 -vector-size 300 -binary 2 -vocab-file /workspace/students/reichelt/BA/data/dd-glove/vocab.txt -verbose 2 -use-def-loss 1 -lambda 0.001 -use-ortho-loss 1 -beta 0.001 -use-proj-loss 1 -gamma 0.2 -seed 42
TRAINING MODEL
Read 1612975968 lines.
Opened definition file
Building definition lists...
Initializing parameters...Using random seed 42
done.
vector size: 300
vocab size: 400000
x_max: 100.000000
alpha: 0.750000
use_def_loss: 1
use_ortho_loss: 1
use_proj_loss: 1
lambda: 0.001000000
beta: 0.001000000
gamma: 0.200000000
MALE index: 211
FEMALE index: 88
30 girls words (id): 10, 88, 573, 23959, 26589, 30318, 44249, 47851, 50827, 59433, 63545, 78210, 80647, 99256, 107658, 123240, 149138, 154585, 170308, 176755, 212716, 213504, 225577, 242790, 252320, 262857, 282380, 290371, 304509, 341767,
30 boys words (id): 28, 211, 1254, 1486, 1701, 40555, 42123, 43576, 70007, 74518, 78180, 85133, 89839, 102195, 132123, 140077, 144221, 161618, 163598, 167993, 172417, 209682, 236714, 278774, 301693, 312064, 359555, 366392, 383944, 393788,
08/09/23 - 09:07.49PM, iter: 001, glove_cost: 0.024502, def_cost: 8.616560, ortho_cost: 0.365397, context_ortho_cost: 0.390244, proj_cost: 0.721238
mkdir -p build
gcc -c src/glove.c -o build/glove.o -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
src/glove.c: In function ‘load_init_file’:
src/glove.c:107:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
107 | fread(&array[a], sizeof(real), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘glove_thread’:
src/glove.c:216:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
216 | fread(&cr, sizeof(CREC), 1, fin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c: In function ‘train_glove’:
src/glove.c:755:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
755 | fread(&def_word_num, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:766:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
766 | fread(&curr_id, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:767:9: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
767 | fread(&curr_size, sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/glove.c:772:15: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
772 | fread(&(word_to_def[curr_id][i+1]), sizeof(int), 1, fdef);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc build/glove.o build/common.o -o build/glove -lm -pthread -O3 -march=native -funroll-loops -Wall -Wextra -Wpedantic
$ /home/students/reichelt/ba/bias-mitigation-ba/DD-GloVe/build/glove -save-file /workspace/students/reichelt/BA/data/dd-glove/vectors_gender_top10 -threads 32 -input-file /workspace/students/reichelt/BA/data/dd-glove/cooccurrence.shuf.bin -x-max 100 -iter 1 -vector-size 300 -binary 2 -vocab-file /workspace/students/reichelt/BA/data/dd-glove/vocab.txt -verbose 2 -use-def-loss 1 -lambda 0.001 -use-ortho-loss 1 -beta 0.001 -use-proj-loss 1 -gamma 0.2 -seed 42
TRAINING MODEL
Read 1612975968 lines.
Opened definition file
Building definition lists...
Initializing parameters...Using random seed 42
done.
vector size: 300
vocab size: 400000
x_max: 100.000000
alpha: 0.750000
use_def_loss: 1
use_ortho_loss: 1
use_proj_loss: 1
lambda: 0.001000000
beta: 0.001000000
gamma: 0.200000000
MALE index: 211
FEMALE index: 88
10 girls words (id): 10, 44249, 99256, 170308, 213504, 225577, 252320, 282380, 290371, 304509,
10 boys words (id): 1486, 40555, 74518, 78180, 144221, 161618, 172417, 236714, 278774, 301693,
08/09/23 - 09:49.34PM, iter: 001, glove_cost: 0.024496, def_cost: 8.699146, ortho_cost: 0.363419, context_ortho_cost: 0.374847, proj_cost: 0.541516
This diff is collapsed.
DEUTSCHTUM
Def.: Gesamtheit der für die Deutschen typischen Lebensäußerungen; deutsche Wesensart
Def.: Zugehörigkeit zum deutschen Volk
Def.: Gesamtheit der deutschen Volksgruppen im Ausland
Definitional bias: 0.0068
DEUTSCHSTÄMMIG
Def.: von deutschen Vorfahren abstammend
Definitional bias: 0.0036
DEUTSCH-FRANZÖSISCH
Def.: zwischen Deutschland und Frankreich, aus Deutschen und Franzosen bestehend
Definitional bias: -0.0152
ACHTUNDVIERZIGER
Def.: Person, die an der deutschen Revolution von 1848 teilgenommen oder mit ihr sympathisiert hat
Definitional bias: -0.0195
WESTMARK
Def.: Deutsche Mark (im Unterschied zur Mark der Deutschen Demokratischen Republik)
Definitional bias: -0.0291
DEUTSCHKUNDE
Def.: Lehre von der deutschen Sprache und Kultur
Definitional bias: -0.0292
SCHWABENSPIEGEL
Def.: Rechtssammlung des deutschen Mittelalters
Definitional bias: -0.0306
DEUTSCHLANDLIED
Def.: Nationalhymne des Deutschen Reiches (seit 1922), deren dritte Strophe die offizielle Hymne der Bundesrepublik Deutschland ist
Definitional bias: -0.0339
NOVEMBERREVOLUTION
Def.: Revolution im Deutschen Reich und in Österreich im November 1918
Definitional bias: -0.0383
LANDESVERSICHERUNGSANSTALT
Def.: (in der Bundesrepublik Deutschland bis 2005) öffentlich-rechtliche Versicherungsgesellschaft, die durch die Deutsche Rentenversicherung abgelöst wurde
Definitional bias: -0.0404
DEUTSCHSPRACHIG
Def.: die deutsche Sprache sprechend
Def.: in deutscher Sprache ablaufend, verfasst
Definitional bias: -0.0418
HITLERDEUTSCHLAND
Def.: das Deutschland der Hitlerzeit
Definitional bias: -0.0439
DEUTSCHLANDWEIT
Def.: ganz Deutschland umfassend, einschließend; in ganz Deutschland
Definitional bias: -0.0468
NACHKRIEGSDEUTSCHLAND
Def.: Deutschland nach dem Zweiten Weltkrieg
Definitional bias: -0.0470
BIEDERMEIER
Def.: deutsche Kunst- und Kulturepoche (etwa 1815 bis 1848)
Def.: Biedermeierstil
Definitional bias: -0.0489
OSTPREUSSEN
Def.: ehemalige Provinz des Deutschen Reiches
Definitional bias: -0.0500
GESAMTDEUTSCHLAND
Def.: Deutschland mit allen seinen Fürstentümern, Ländern
Def.: Deutschland mit seinen beiden Staaten nach dem 2. Weltkrieg
Def.: ganz Deutschland
Definitional bias: -0.0505
DEUTSCH
Def.: die Deutschen, Deutschland betreffend
Def.: in der Sprache der Bevölkerung besonders Deutschlands, Österreichs und in Teilen der Schweiz
Def.: in deutscher Schreibschrift [verfasst]
Def.: die deutsche Sprache [eines Einzelnen oder einer Gruppe]; die näher gekennzeichnete deutsche Sprache
Def.: Unterrichtsfach, in dem deutsche Sprache und Literatur gelehrt wird
Definitional bias: -0.0556
BUNDESPOST
Def.: Deutsche Bundespost (früheres staatliches Postunternehmen der Bundesrepublik Deutschland)
Definitional bias: -0.0613
DEUTSCHER
Def.: Angehöriger des deutschen Volkes, aus Deutschland stammende Person
Def.: das deutsche Volk
Definitional bias: -0.0630
BUNDESBANK
Def.: Kurzform von Deutsche Bundesbank (zentrale Notenbank der Bundesrepublik Deutschland)
Definitional bias: -0.0632
GERMANIA
Def.: Frauengestalt, die das ehemalige Deutsche Reich symbolisiert
Definitional bias: -0.0720
DEUTSCHLEHRER
Def.: Lehrer, der deutsche Sprache und Literatur unterrichtet
Definitional bias: -0.0742
DEUTSCHE
Def.: Angehörige des deutschen Volkes, aus Deutschland stammende weibliche Person
Def.: die deutsche Sprache im Allgemeinen
Definitional bias: -0.0786
KURRENTSCHRIFT
Def.: (früher benutzte) deutsche Schreibschrift
Definitional bias: -0.0890
HOCHDEUTSCHE
Def.: Deutsche
Definitional bias: -0.0956
HOLLÄNDISCHE
Def.: vgl. Deutsche
Definitional bias: -0.0966
SCHWEIZERDEUTSCHE
Def.: vgl. Deutsche
Definitional bias: -0.0966
ROTWELSCH
Def.: in der Gaunersprache Rotwelsch, zu ihr gehörend
Def.: deutsche Gaunersprache
Definitional bias: -0.1080
LUFTHANSA
Def.: Kurzform von: Deutsche Lufthansa AG (eine deutsche Luftverkehrsgesellschaft)
Definitional bias: -0.1316
DEUTSCHNATIONAL
Def.: zu einer liberalen Bewegung in Österreich gehörend, die die Anlehnung des deutschen Österreichs an Deutschland fordert
Def.: zu einer monarchistischen und betont nationalistischen Partei der Weimarer Republik gehörend, sie betreffend
Def.: eine extrem nationalistische, [angebliche] deutsche Interessen in den Vordergrund stellende, politische Einstellung betreffend, aufweisend
Definitional bias: 0.0767
GROSSDEUTSCHLAND
Def.: (in der expansionistischen Vorstellung der Nationalsozialisten) durch den Zusammenschluss aller geschlossen siedelnden Deutschen zu schaffendes Deutschland
Def.: Deutschland nach dem sogenannten Anschluss Österreichs (im Jahre 1938)
Def.: Deutschland als (besonders seit der Wiedervereinigung bedrohlich empfundene) wirtschaftliche Großmacht
Definitional bias: 0.0370
DEUTSCHLANDTOUR
Def.: durch Deutschland führende Tournee oder Konzerttour
Def.: Deutschland-Rundfahrt
Definitional bias: 0.0180
DEUTSCHTUM
Def.: Gesamtheit der für die Deutschen typischen Lebensäußerungen; deutsche Wesensart
Def.: Zugehörigkeit zum deutschen Volk
Def.: Gesamtheit der deutschen Volksgruppen im Ausland
Definitional bias: 0.0151
DEUTSCH-FRANZÖSISCH
Def.: zwischen Deutschland und Frankreich, aus Deutschen und Franzosen bestehend
Definitional bias: -0.0022
HITLERDEUTSCHLAND
Def.: das Deutschland der Hitlerzeit
Definitional bias: -0.0299
DEUTSCHE
Def.: Angehörige des deutschen Volkes, aus Deutschland stammende weibliche Person
Def.: die deutsche Sprache im Allgemeinen
Definitional bias: -0.0518
DEUTSCHROCK
Def.: aus Deutschland stammende Rockmusik
Definitional bias: -0.0525
DEUTSCHER
Def.: Angehöriger des deutschen Volkes, aus Deutschland stammende Person
Def.: das deutsche Volk
Definitional bias: -0.0631
SUDETENDEUTSCHE
Def.: aus dem Sudetenland stammende ethnische Deutsche
Definitional bias: -0.0871
NATIONALSOZIALISMUS
Def.: nach dem Ersten Weltkrieg in Deutschland aufgekommene, extrem nationalistische, imperialistische und rassistische politische Bewegung
Def.: auf der Ideologie des Nationalsozialismus basierende faschistische Herrschaft von A. Hitler in Deutschland von 1933 bis 1945
Definitional bias: 0.0585
VOLKSHERRSCHAFT
Def.: Herrschaft durch das Volk
Definitional bias: 0.0543
LANDESVERSICHERUNGSANSTALT
Def.: (in der Bundesrepublik Deutschland bis 2005) öffentlich-rechtliche Versicherungsgesellschaft, die durch die Deutsche Rentenversicherung abgelöst wurde
Definitional bias: 0.0434
TAMILE
Def.: Angehöriger eines vorderindischen Volkes
Definitional bias: 0.0418
DEUTSCHTUM
Def.: Gesamtheit der für die Deutschen typischen Lebensäußerungen; deutsche Wesensart
Def.: Zugehörigkeit zum deutschen Volk
Def.: Gesamtheit der deutschen Volksgruppen im Ausland
Definitional bias: 0.0228
DEUTSCH-FRANZÖSISCH
Def.: zwischen Deutschland und Frankreich, aus Deutschen und Franzosen bestehend
Definitional bias: 0.0053
DEUTSCHE
Def.: Angehörige des deutschen Volkes, aus Deutschland stammende weibliche Person
Def.: die deutsche Sprache im Allgemeinen
Definitional bias: -0.0390
DEUTSCHER
Def.: Angehöriger des deutschen Volkes, aus Deutschland stammende Person
Def.: das deutsche Volk
Definitional bias: -0.0423
BUNDESBANK
Def.: Kurzform von Deutsche Bundesbank (zentrale Notenbank der Bundesrepublik Deutschland)
Definitional bias: -0.0458
HOCHDEUTSCHE
Def.: Deutsche
Definitional bias: -0.0784
BIEDERMEIER
Def.: deutsche Kunst- und Kulturepoche (etwa 1815 bis 1848)
Def.: Biedermeierstil
Definitional bias: -0.0082
HITLERDEUTSCHLAND
Def.: das Deutschland der Hitlerzeit
Definitional bias: -0.0157
BUNDESBANK
Def.: Kurzform von Deutsche Bundesbank (zentrale Notenbank der Bundesrepublik Deutschland)
Definitional bias: -0.0259
DEUTSCHER
Def.: Angehöriger des deutschen Volkes, aus Deutschland stammende Person
Def.: das deutsche Volk
Definitional bias: -0.0290
GERMANIA
Def.: Frauengestalt, die das ehemalige Deutsche Reich symbolisiert
Definitional bias: -0.0309
HOCHDEUTSCHE
Def.: Deutsche
Definitional bias: -0.0426
HOLLÄNDISCHE
Def.: vgl. Deutsche
Definitional bias: -0.0465
SCHWEIZERDEUTSCHE
Def.: vgl. Deutsche
Definitional bias: -0.0465
ROTWELSCH
Def.: in der Gaunersprache Rotwelsch, zu ihr gehörend
Def.: deutsche Gaunersprache
Definitional bias: -0.0885
LUFTHANSA
Def.: Kurzform von: Deutsche Lufthansa AG (eine deutsche Luftverkehrsgesellschaft)
Definitional bias: -0.0925
DEUTSCH-FRANZÖSISCH
Def.: zwischen Deutschland und Frankreich, aus Deutschen und Franzosen bestehend
Definitional bias: 0.0120
BUNDESPRÄSIDENT
Def.: Staatsoberhaupt in der Bundesrepublik Deutschland und in Österreich
Def.: Vorsitzender des Bundesrates in der Schweiz
Definitional bias: 0.0036
ACHTUNDVIERZIGER
Def.: Person, die an der deutschen Revolution von 1848 teilgenommen oder mit ihr sympathisiert hat
Definitional bias: -0.0052
NOVEMBERREVOLUTION
Def.: Revolution im Deutschen Reich und in Österreich im November 1918
Definitional bias: -0.0114
HITLERDEUTSCHLAND
Def.: das Deutschland der Hitlerzeit
Definitional bias: -0.0314
DEUTSCHER
Def.: Angehöriger des deutschen Volkes, aus Deutschland stammende Person
Def.: das deutsche Volk
Definitional bias: -0.0497
DEUTSCHE
Def.: Angehörige des deutschen Volkes, aus Deutschland stammende weibliche Person
Def.: die deutsche Sprache im Allgemeinen
Definitional bias: -0.0514
HOCHDEUTSCHE
Def.: Deutsche
Definitional bias: -0.0586
WITWER
Def.: Mann, dessen Ehefrau gestorben ist
Definitional bias: -0.0702
AUSLANDSDEUTSCHE
Def.: im Ausland lebende deutsche weibliche Person
Definitional bias: -0.0845
FRAU
Def.: erwachsene Person weiblichen Geschlechts
Def.: Ehefrau
Def.: Hausherrin, Dame
Def.: titelähnliche, auch als Anrede verwendete Bezeichnung für eine erwachsene Person weiblichen Geschlechts
Def.: als Zusatz bei Verwandtschaftsbezeichnungen
Definitional bias: -0.1405
MILCHDRÜSE
Def.: Milch absondernde Drüse bei der Frau und den weiblichen Säugetieren
Definitional bias: -0.1070
SIE
Def.: Person oder Tier weiblichen Geschlechts
Definitional bias: -0.0965
ZITZE
Def.: Milch bildendes, paarig angeordnetes Organ bei weiblichen Säugetieren
Def.: [weibliche] Brust[warze]
Definitional bias: -0.0963
DOMINIKANERIN
Def.: Angehörige des weiblichen Zweiges des Dominikanerordens
Def.: weibliche Form zu Dominikaner
Definitional bias: -0.0841
BRUSTKREBS
Def.: Krebs besonders der weiblichen Brustdrüsen
Definitional bias: -0.0817
MÄDCHEN
Def.: Kind weiblichen Geschlechts
Def.: junge, jüngere weibliche Person
Def.: Freundin (eines jungen Mannes)
Def.: Hausmädchen, Hausangestellte, Hausgehilfin
Definitional bias: -0.0765
KARMELITIN
Def.: Angehörige des weiblichen Zweiges des Karmelitenordens
Definitional bias: -0.0679
ZISTERZIENSERIN
Def.: Angehörige des weiblichen Zweiges der Zisterzienser
Definitional bias: -0.0659
EIERSTOCK
Def.: paarig angelegtes Geschlechtsorgan, das die weiblichen Keimzellen bildet
Definitional bias: -0.0655
GEBÄRMUTTER
Def.: (beim Menschen und Säugetier) Hohlorgan des weiblichen Körpers, in dem sich das befruchtete Ei fortentwickelt; Uterus
Definitional bias: -0.0625
SCHEIDE
Def.: schmale, längliche, der Form der jeweiligen Klinge angepasste Hülse aus festem Material, in die eine Hieb- oder Stichwaffe bis zum Knauf hineingesteckt wird
Def.: von der Gebärmutter nach außen führender, mit Schleimhaut ausgekleideter, schlauchartiger Teil der weiblichen Geschlechtsorgane; Vagina
Def.: Grenze
Definitional bias: -0.0510
STERBLICHE
Def.: sterblicher Mensch weiblichen Geschlechts
Definitional bias: -0.0499
BRUSTVERGRÖSSERUNG
Def.: Vergrößerung der weiblichen Brust
Definitional bias: -0.0486
FRAUSCHAFT
Def.: aus weiblichen Mitgliedern bestehendes Team
Definitional bias: -0.0485
SCHWESTER
Def.: Person weiblichen Geschlechts im Verwandtschaftsverhältnis zu einer anderen Person, die von denselben Eltern abstammt
Def.: Mitmensch weiblichen Geschlechts, mit dem man sich verbunden fühlt
Def.: Nonne, Ordensschwester
Def.: Homosexueller
Definitional bias: -0.0426
MUTTERMILCH
Def.: nach der Geburt eines Kindes in den Drüsen der weiblichen Brust gebildete Milch
Definitional bias: -0.0418
GEBURTSKANAL
Def.: Kanal im weiblichen Körper, den das Kind bei der Geburt durchwandert
Definitional bias: -0.0364
INNEWOHNEN
Def.: als Eigentümlichkeit, Besonderheit, als etwas Charakteristisches in etwas mit enthalten sein, zu jemandem, etwas gehören
Definitional bias: -0.0352
EUTER
Def.: in der Leistengegend bei bestimmten weiblichen Säugetieren (z. B. Kühen, Ziegen, Schafen, Kamelen) sack- oder beutelartig herabhängendes Organ mit zwei oder mehr Zitzen, in dem sich die Milchdrüsen befinden
Definitional bias: -0.0332
WOCHENBETT
Def.: Zeitraum von 6 bis 8 Wochen nach der Entbindung, in dem es zur Rückbildung der durch Schwangerschaft und Geburt am weiblichen Körper hervorgerufenen Veränderungen kommt
Definitional bias: -0.0226
VULVA
Def.: Gesamtheit der äußeren weiblichen Geschlechtsorgane
Definitional bias: -0.0210
PEEPSHOW
Def.: auf sexuelle Stimulation zielendes Sich-zur-Schau-Stellen einer nackten, besonders einer weiblichen Person, die gegen Geldeinwurf durch das Guckfenster einer Kabine betrachtet werden kann
Def.: Einrichtung für Peepshows
Definitional bias: -0.0184
RAUMAUFTEILUNG
Def.: Aufteilung des gegebenen Raumes in Gebäuden
Def.: Nutzen des zur Verfügung stehenden Raumes auf dem Spielfeld durch die angreifende oder verteidigende Mannschaft
Definitional bias: -0.0167
BÜSTENHALTER
Def.: Teil der Unterkleidung, der der weiblichen Brust Form und Halt geben soll
Definitional bias: -0.0092
TRÄCHTIGKEIT
Def.: das Trächtigsein; Zustand eines weiblichen Säugetiers von der Befruchtung bis zur Geburt des oder der Jungen
Def.: das Trächtigsein
Definitional bias: -0.0024
FREIEN
Def.: heiraten, mit jemandem eine Ehe schließen
Def.: [für einen andern] einer weiblichen Person einen Heiratsantrag machen, um sie werben, um ihre Hand bitten
Definitional bias: 0.0254
BRENNEND
Def.: sehr wichtig, akut
Def.: sehr
Definitional bias: 0.0262
HITZIG
Def.: von leicht erregbarem Temperament und dabei heftig, jähzornig in seinen Reaktionen
Def.: [in ungezügelter Weise] leidenschaftlich
Def.: erregt, mit Leidenschaft [geführt]
Def.: heiß, fiebrig
Def.: (von weiblichen Hunden und Katzen) läufig, brünstig
Def.: (vom Boden) gut durchlüftet und dadurch Humus und Nährstoffe rasch abbauend
Definitional bias: 0.0452
BEFRUCHTEN
Def.: (bei der weiblichen Geschlechtszelle) die Befruchtung vollziehen, herbeiführen
Def.: bei jemandem, etwas geistig anregend wirken, jemandem, einer Sache wertvolle, wesentliche Anregungen geben
Definitional bias: 0.0723
FRAU
Def.: erwachsene Person weiblichen Geschlechts
Def.: Ehefrau
Def.: Hausherrin, Dame
Def.: titelähnliche, auch als Anrede verwendete Bezeichnung für eine erwachsene Person weiblichen Geschlechts
Def.: als Zusatz bei Verwandtschaftsbezeichnungen
Definitional bias: -0.1571
SIE
Def.: Person oder Tier weiblichen Geschlechts
Definitional bias: -0.1015
MÄDCHEN
Def.: Kind weiblichen Geschlechts
Def.: junge, jüngere weibliche Person
Def.: Freundin (eines jungen Mannes)
Def.: Hausmädchen, Hausangestellte, Hausgehilfin
Definitional bias: -0.0881
OBERLAUSITZ
Def.: Gebiet um Bautzen und Görlitz
Definitional bias: -0.0700
BRUST
Def.: Brustschwimmen
Def.: vordere Seite des Rumpfes bei Mensch und Wirbeltieren
Def.: die im Brustkorb gelegenen Atmungsorgane
Def.: paariges, halbkugelförmiges Organ (an der Vorderseite des weiblichen Oberkörpers), das die Milchdrüsen enthält und das in der Stillzeit Milch bildet
Def.: Bruststück eines Schlachttiers
Definitional bias: -0.0692
SCHWESTER
Def.: Person weiblichen Geschlechts im Verwandtschaftsverhältnis zu einer anderen Person, die von denselben Eltern abstammt
Def.: Mitmensch weiblichen Geschlechts, mit dem man sich verbunden fühlt
Def.: Nonne, Ordensschwester
Def.: Homosexueller
Definitional bias: -0.0478
JURIST
Def.: jemand, der Rechtswissenschaften studiert hat bzw. auf diesem Gebiet arbeitet
Definitional bias: -0.0433
ENTDECKER
Def.: jemand, der etwas entdeckt hat
Definitional bias: -0.0367
GESCHICHTSFORSCHUNG
Def.: wissenschaftliche Erforschung der Geschichte
Definitional bias: -0.0351
QUARZ
Def.: in verschiedenen Arten vorkommendes, in reinem Zustand farbloses, hartes und sprödes kristallines Mineral
Def.: Quarzkristall, besonders als elektronisches Bauelement
Definitional bias: -0.0347
BAUGESCHICHTE
Def.: Geschichte der Entstehung eines Bauwerks
Definitional bias: -0.0322
GESCHICHTSWISSENSCHAFT
Def.: Wissenschaft von der Geschichte und ihrer Erforschung; Historie
Definitional bias: -0.0298
FREIBERUFLICH
Def.: in einem freien Beruf [tätig]
Definitional bias: -0.0276
THEOLOGE
Def.: jemand, der Theologie studiert, studiert hat und auf diesem Gebiet beruflich, wissenschaftlich tätig ist
Definitional bias: -0.0218
EISENBAHNNETZ
Def.: Netz der Eisenbahnlinien in einem Gebiet
Definitional bias: -0.0097
STADTPARK
Def.: öffentlicher Park in einer Stadt
Definitional bias: 0.0023
SCHACH
Def.: Brettspiel für zwei Personen, die mit je sechzehn schwarzen bzw. weißen Schachfiguren (von unterschiedlichem Wert und mit unterschiedlicher Funktion) abwechselnd ziehen mit dem Ziel, den gegnerischen König mattzusetzen
Def.: Stellung im Schach, bei der der König unmittelbar geschlagen werden könnte
Def.: Schachspiel
Def.: Partie Schach
Definitional bias: 0.0091
ABWASSER
Def.: durch häuslichen, gewerblichen oder industriellen Gebrauch verunreinigtes abfließendes Wasser
Definitional bias: 0.0108
ENDRUNDE
Def.: letzte, über den Gesamtsieg entscheidende Runde eines aus mehreren Runden bestehenden Wettbewerbs
Definitional bias: 0.0111
FERIEN
Def.: mehrere zusammenhängende Tage oder Wochen dauernde, der Erholung dienende, turnusmäßig wiederkehrende Arbeitspause einer Institution (z. B. der Schule, der Hochschule, des Gerichts oder des Parlaments)
Def.: Urlaub
Definitional bias: 0.0126
FREIEN
Def.: heiraten, mit jemandem eine Ehe schließen
Def.: [für einen andern] einer weiblichen Person einen Heiratsantrag machen, um sie werben, um ihre Hand bitten
Definitional bias: 0.0196
REICHSGERICHT
Def.: höchstes Gericht des Deutschen Reiches für Angelegenheiten des Zivil- und Strafrechts
Definitional bias: 0.0208
SYNTHESIZER
Def.: elektronisches Musikinstrument, das aus einer Kombination aufeinander abgestimmter elektronischer Bauelemente (zur Erzeugung von Klängen und Geräuschen) besteht
Definitional bias: 0.0372
FREIMAURER
Def.: Mitglied eines weltweit verbreiteten, in Logen gegliederten Männerbundes mit ethischen und kosmopolitischen Zielen und einem mystischen Ritual
Definitional bias: 0.0396
BAUSTIL
Def.: Stil eines Bauwerks
Definitional bias: 0.0481
BEDEUTEND
Def.: besonderes Gewicht, besondere Tragweite habend; wichtig
Def.: großes Ansehen genießend; berühmt, namhaft, sehr bekannt
Def.: eine hohe Qualität und daher einen großen Wert aufweisend; hervorragend, wertvoll
Def.: eine beachtliche Größe, Höhe aufweisend; von besonderem Ausmaß; groß, beachtlich
Def.: um vieles, sehr
Definitional bias: 0.0560
BEMERKENSWERT
Def.: beachtlich, bedeutend, ziemlich groß
Def.: Aufmerksamkeit, Beachtung verdienend
Def.: sehr, ungewöhnlich
Definitional bias: 0.0658
BOMBEN
Def.: bombardieren
Def.: Bomben legen
Def.: mit großer Wucht [aufs Tor] schießen
Definitional bias: 0.0699
HEILIGTUM
Def.: heilige Stätte zur Verehrung [eines] Gottes
Def.: heiliger, der Verehrung würdiger Gegenstand
Definitional bias: 0.0764
ENGAGIERT
Def.: entschieden für etwas eintretend, ein starkes persönliches Interesse an etwas habend
Definitional bias: 0.0920
FRAU
Def.: erwachsene Person weiblichen Geschlechts
Def.: Ehefrau
Def.: Hausherrin, Dame
Def.: titelähnliche, auch als Anrede verwendete Bezeichnung für eine erwachsene Person weiblichen Geschlechts
Def.: als Zusatz bei Verwandtschaftsbezeichnungen
Definitional bias: -0.0910
OBERLAUSITZ
Def.: Gebiet um Bautzen und Görlitz
Definitional bias: -0.0908
SIE
Def.: Person oder Tier weiblichen Geschlechts
Definitional bias: -0.0601
BAUGESCHICHTE
Def.: Geschichte der Entstehung eines Bauwerks
Definitional bias: -0.0086
MÄDCHEN
Def.: Kind weiblichen Geschlechts
Def.: junge, jüngere weibliche Person
Def.: Freundin (eines jungen Mannes)
Def.: Hausmädchen, Hausangestellte, Hausgehilfin
Definitional bias: -0.0014
SCHWESTER
Def.: Person weiblichen Geschlechts im Verwandtschaftsverhältnis zu einer anderen Person, die von denselben Eltern abstammt
Def.: Mitmensch weiblichen Geschlechts, mit dem man sich verbunden fühlt
Def.: Nonne, Ordensschwester
Def.: Homosexueller
Definitional bias: -0.0005
THEOLOGE
Def.: jemand, der Theologie studiert, studiert hat und auf diesem Gebiet beruflich, wissenschaftlich tätig ist
Definitional bias: 0.0134
STADTPARK
Def.: öffentlicher Park in einer Stadt
Definitional bias: 0.0142
FREIEN
Def.: heiraten, mit jemandem eine Ehe schließen
Def.: [für einen andern] einer weiblichen Person einen Heiratsantrag machen, um sie werben, um ihre Hand bitten
Definitional bias: 0.0462
ENDRUNDE
Def.: letzte, über den Gesamtsieg entscheidende Runde eines aus mehreren Runden bestehenden Wettbewerbs
Definitional bias: 0.0734
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment