)]}'
{
  "log": [
    {
      "commit": "7ba3f67c5cbd18088bfdffe8a6aa7d75de4579bf",
      "tree": "3061bfa07ec10833082b172592dd50de51762ec6",
      "parents": [
        "f7e7c35639f4cd0042f3f4507d3dd10dcf81a9f0"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Sep 06 13:47:07 2026 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Sep 06 13:47:07 2026 +0200"
      },
      "message": "Add Levy and Goldberg (2014) to the references\n\nThe entry was already in templates/references.html.ep, commented out, with\na link to the old papers.nips.cc path. It is uncommented, completed with\nvolume and pages, repointed at the URL that path now redirects to, and\nadded to the Readme as well.\n\nNothing in the text cites it. Whether the dot product the predictive\ncollocators are computed from corresponds to the shifted PMI the paper\nderives for SGNS has not been checked for this position-specific variant,\nso it stands as background rather than as a justification.\n\nCo-Authored-By: Claude Opus 5 \u003cnoreply@anthropic.com\u003e\nChange-Id: Ib9096a6a6c274d1f4e8e20e0f103d1a9dc5c4006\n"
    },
    {
      "commit": "21fcd5f746b400213f56035a2a424ea2feff9f31",
      "tree": "6ae8016583eaa565276b0a912e7ea6c01831e73c",
      "parents": [
        "565274ef29a94438e63dffac72ac74c24a534c40"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Sep 06 13:17:29 2026 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Sep 06 13:17:29 2026 +0200"
      },
      "message": "Show the predictive score before the sigmoid\n\nmax(a) is sigmoid(z), and sigmoid is monotone, so it ranks the collocates\nthe way the raw score z does - but only in principle. It is read out of\nexpTable, whose index is (z + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2),\ninteger arithmetic that comes to 83: z is bucketed at 1/83 and everything\nfrom MAX_EXP up lands in one value, 0.99741. Of the 1000 rows for\n\"König - Mann + Frau\" only 264 have a distinct max(a), up to fifteen share\none, and Gemahlin, römisch-deutsche, ungekrönte and Co-Fürsten sit\ntogether on the cap.\n\nz was computed for every candidate at every window position and dropped at\nthat lookup, which is what the unused max_f and maxmax_f in\ngetCollocators once tracked. It is carried through now, per position in\ncollocator.raw and as the maximum over positions in collocator.max_raw,\nand shown next to max(a) as max(z).\n\nNothing else changes: the threshold, the ordering inside a position\u0027s list\nand the auto focus all still work on the activation. The column renders\nthree decimals but sorts on the unrounded value.\n\nThe info page entry says that the arithmetic covers the paradigmatic and\nthe predictive syntagmatic analysis, and about the latter that it used to\nconsider only the first word form and has gained the max(z) column. The\nsaturation change needs no notice of its own: of ten frequent single words\nthe highest max(z) is 5.981, so none reaches the cap of 6 and only\nexpressions get past it.\n\nCo-Authored-By: Claude Opus 5 \u003cnoreply@anthropic.com\u003e\nChange-Id: If26bd78b36e247a4250b63059114470c473fb6c5\n"
    },
    {
      "commit": "565274ef29a94438e63dffac72ac74c24a534c40",
      "tree": "bab44688a0ecfbc487dc94cf7e3f85d65604e5fa",
      "parents": [
        "5b8aaf7556e4c5f677d51601c3f1c15e90557516"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Sep 06 13:17:17 2026 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Sep 06 13:17:17 2026 +0200"
      },
      "message": "Search the embedding space with vector expressions\n\n\"König - Mann + Frau\" now looks for the neighbours of\nvec(König) - vec(Mann) + vec(Frau) instead of the neighbours of a single\nword. A \u0027+\u0027 or \u0027-\u0027 is an operator only at the beginning of a token, so\nhyphenated words like \"Nord-Süd-Dialog\" stay searchable, and blank\nseparated words keep entering the query with a \u0027+\u0027, as before.\n\n_get_neighbours() already had the branch for it, but nothing ever filled\nwl-\u003esep: the wordlist came from malloc() and the signs were read out of\nuninitialised memory, so a multi word query subtracted operands at\nrandom. It is filled now, and its indexing corrected - sep[b] is the sign\nof operand b, not sep[b-1].\n\nThe predictive collocators answer for the whole query as well.\ngetCollocators() read the input weights of wl-\u003ewordi[0], the first\noperand, and nothing said so: \"Haus Auto\" answered with the collocators\nof Haus, \"Auto Haus\" with those of Auto. The score of a candidate is\nsigmoid(q . syn1neg[collocate, position]), linear in q before the\nsigmoid, so q can be the signed combination the paradigmatic side\nsearches around rather than the vector of one word.\n\nThe terms are averaged rather than summed. The sigmoid is informative\nover a narrow range only - the strongest collocates of a single word\nreach 0.994 to 0.997 on dereko-2026-ii, against the 0.9975 that MAX_EXP\nallows - so a plain sum would push them into saturation. Dividing by the\nnumber of terms keeps every query in the range MIN_RESP and the auto\nfocus are calibrated for, and leaves one word exactly as it was, divisor\none. A balanced analogy is one term as well, +1 -1 +1.\n\nThose tails now saturate instead of being dropped. Activations outside\n±MAX_EXP used to skip the collocate entirely, removing the strongest ones\nfrom the list and from the position and target sums.\n\nThe count based collocators cannot follow: they are looked up per node in\nthe co-occurrence database. They used to be fetched for the first\nparadigmatic neighbour, i.e. for the word nearest to the query vector,\nwhich for an expression is not what was asked for. The interface says so\nin place of that table now, and get_neighbours() reports the number of\noperands so it can tell the two cases apart.\n\nOperands outside the vocabulary are named above the result instead of\nbeing dropped in silence. The vocabulary lookup only recognised a miss at\nthe very end of the vocabulary, so in a merged model a missing word\nresolved to whatever sits at the boundary between the two vocabularies;\nit returns -1 in both halves now.\n\nTwo more things the tokeniser uncovered. The best array was sized for\n10 * max(N, 200) entries but sorted over N * para_threads, which fits\nonly as long as the syntagmatic threads take half of them - it is sized\nfor num_threads slices now. And its unfilled slots kept wordi \u003d\u003d 0 from\nthe memset, which the result loop emitted as vocab[-1 * max_w] once a\nthread found fewer candidates than were asked for; slots start at -1 and\nthe loop stops there.\n\nCo-Authored-By: Claude Opus 5 \u003cnoreply@anthropic.com\u003e\nChange-Id: Ia91727eb669d73fc055adf652500464b8a743795\n"
    },
    {
      "commit": "5b8aaf7556e4c5f677d51601c3f1c15e90557516",
      "tree": "5f0af7ab733f9d250efe610938078a4bda8d6ea3",
      "parents": [
        "f5abdcd3a5ad1e1ca9361fa1989d2f7cc9430c57"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Sep 04 19:21:22 2026 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Sep 04 19:21:22 2026 +0200"
      },
      "message": "Info tab: show the changes, age out old downtimes, link GitHub\n\nThree things in the info tab.\n\nThe note about the changed scores sat inside the downtime list, where\nnobody could read it: insertCalendarEvents() calls replaceChildren() on\nthat list and fills it from the iCal feed, so any static content there is\nonly a placeholder until the calendar loads. It is now a section of its\nown, above the downtimes, and the thanks to Tim Feldmüller is dropped\nfrom it again - he belongs in the Readme and the changelog, not in a\nnotice to users.\n\nDowntimes older than a week are no longer listed. The maxAgeDays\nparameter of insertCalendarEvents() defaulted to 100, which kept\nmaintenance windows from months ago on the page.\n\nThe dd elements of that list had no indent of their own and fell back to\nthe browser default of 40px, which is inside the 21ex that the floated dt\noccupies, so their text wrapped around the float instead of starting\nafter it.\n\nThe source code links point to the published GitHub repositories now,\nand collocatordb is listed alongside dereko2vec. derekovecs itself has no\nGitHub repository yet, so its link still goes to gitiles.\n\nCo-Authored-By: Claude Opus 5 \u003cnoreply@anthropic.com\u003e\nChange-Id: I178cad2586db0ef07f6e76671c3c35e050b1bf60\n"
    },
    {
      "commit": "92507656d27d6413f59c0d784a117f907ec2d7eb",
      "tree": "96b74854526fb9f3e90992b22d279d2b0fa1e5ea",
      "parents": [
        "67ea2ad2b0313bb80c6a8d57061fb1ed68e2bbdb"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Sep 04 17:59:18 2026 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Sep 04 17:59:18 2026 +0200"
      },
      "message": "Correct the log-likelihood scaling and fix the German announcement\n\ncollocatordb 1.8.0 scales the log-likelihood contingency table with the\nwindow size as a whole rather than in its row total alone, so LL values\nchange here too. MI, MI², MI³ and nPMI do not, as they only need the\nexpected co-occurrence frequency, which is the same either way. Thanks\nto Tim Feldmüller for spotting the inconsistency.\n\nThe German announcement still described LDaf as Log-Dice of the auto\nfocus window, and thus as at most as high as LD. That was true only for\nthe intermediate state that has since been reverted; the English text\nhad been corrected, the German one had not, because the replacement that\nwas supposed to update it silently matched nothing. Both are now\nrewritten from the same wording.\n\nCo-Authored-By: Claude Opus 5 \u003cnoreply@anthropic.com\u003e\nChange-Id: I42174ac2500f8e1bc3e54739310736526a1d5d47\n"
    },
    {
      "commit": "1e00eb8162313000137aad16fb6cda794ea567e2",
      "tree": "855bb8610c01906b0f7d96f672d78f0d9adb9c74",
      "parents": [
        "ffd6d2a20ef47c67fe15e5494121f88f516d67ab"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Sep 04 16:38:30 2026 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Sep 04 16:38:30 2026 +0200"
      },
      "message": "Document the corrected Log-Dice, the effective window and the auto focus\n\nThree things were left unexplained, and one of them has changed:\n\nLD is now computed as Rychly (2008) defines it, without the window size\nfactor that used to be applied to f1, so its values are higher than\nbefore, by up to log2 of the window size, and comparable to those of\nother tools. This is announced in the info tab.\n\nLDaf is unchanged, as is the resulting order of the collocates, but it is\neasily mistaken for Log-Dice of the auto focus window. It is the auto\nfocus score itself, whose denominator grows with the width of the\nselection, which is what makes it sensitive to how concentrated a pair\nis, and thus what makes it order collocates usefully enough to serve as\nthe default order. It is therefore not on the scale of LD and can be\nhigher or lower than it.\n\nLL, MI, MI², MI³ and nPMI are computed over the positions in which the\ncollocate actually occurs, not over the whole context window. Calling\nthese the attested positions, and their number the effective window size,\nkeeps them apart from the auto focus, which is Belica\u0027s term for the not\nnecessarily contiguous selection of positions that yields the highest\nscore. Both are visible in the auto-focus column, which marks the\nattested positions with a hollow and the selected ones with a filled\nsquare.\n\nExplained in the info tab in both languages, in the tooltips of the LDaf\nand auto-focus columns, and the LDaf tooltip now gives the formula.\n\nCo-Authored-By: Claude Opus 5 \u003cnoreply@anthropic.com\u003e\nChange-Id: Id6293c71438d4b42d3a461697c181e3b6a072a83\n"
    },
    {
      "commit": "b3cd59f0a422e7fcdf78658d4480966f61800bd1",
      "tree": "2a02147bf42a94cd2c6b67c1a83ae209a3f41c25",
      "parents": [
        "23993b6d7a6cfcc85238bc6ba3170cd55fa88289"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Aug 21 10:47:45 2026 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Aug 21 10:47:45 2026 +0200"
      },
      "message": "Turn away the crawlers that collect training data\n\nEvery URL with parameters is a result computed for one word, there is one\nfor every word of the vocabulary, and none of it can be answered from a\ncache, so a crawler that follows them keeps the machine busy for nothing.\nThe instance on corpora.ids-mannheim.de answers about 21000 such requests\na day.\n\nRequests whose User-Agent matches a list of such crawlers now get 403 in\nbefore_dispatch, i.e. before any computation. The list can be replaced in\nthe configuration file, robots \u003d\u003e {block_user_agents \u003d\u003e \u0027...\u0027}, and an\nempty value switches the blocking off. Ordinary search engines are not on\nit.\n\nFor the crawlers that do read robots.txt, every response to a request\nwith parameters carries X-Robots-Tag: noindex, nofollow, result pages\ncarry the matching meta element, and robots.txt is served at every path -\nwhich only helps where derekovecs owns its host name, a proxy that mounts\nit below a path still has to serve the site wide one itself.\n\nCo-Authored-By: Claude Opus 5 \u003cnoreply@anthropic.com\u003e\nChange-Id: Id68487ef716459e0ea9f045060edc34edf85065e\n"
    },
    {
      "commit": "014220ce5507e2518daee5fc567bbe8a367c4da1",
      "tree": "d40483ae929c0627a9378a9a38fc1eae2a7adec9",
      "parents": [
        "41964fbb85491d7daf9f3fc871d7386d6ec74d21"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Aug 28 15:33:43 2024 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Aug 28 16:12:32 2024 +0200"
      },
      "message": "Add missing reference in about\n\nChange-Id: Ic41c855a590a59791b3aeb3e5fe3f7c4bddfb5c3\n"
    },
    {
      "commit": "41964fbb85491d7daf9f3fc871d7386d6ec74d21",
      "tree": "9a6f2577b191caaf50ca1e13131cd689162c40f4",
      "parents": [
        "2486d8f04868999fd211f70c502bda924f9a5fbd"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Aug 28 15:03:00 2024 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Aug 28 15:05:16 2024 +0200"
      },
      "message": "Add Iași team contribution reference for CoRoLa\n\nChange-Id: Ia7d2525e9a7040d26e4f0980d335e4a75008e439\n"
    },
    {
      "commit": "d68f5c3f1d37bb6b5ad578ed61f2fc30cd886d0c",
      "tree": "44426efdd69a8c7411cd627cc30036eb4105860f",
      "parents": [
        "2bb85b2704e91aa8374fe9c84535f212397b912e"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Aug 23 11:50:32 2024 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Aug 23 11:50:32 2024 +0200"
      },
      "message": "Use KorAP as example for production level offer\n\nChange-Id: Ibac0c0b2f7107addfdd3cc1d1836f25545cb35d6\n"
    },
    {
      "commit": "fa7628f1b63274585c0cfa80d01b4bde54f21cc1",
      "tree": "224f220707f6da81acb5bf3a59367d1a3131fd91",
      "parents": [
        "49c5cf097debb6f7ce7c730ba5af2cba51be5a68"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Aug 23 11:40:27 2024 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Aug 23 11:40:27 2024 +0200"
      },
      "message": "Add DeReKo and CoRoLa references\n\nChange-Id: I15ea77d1ca795f136960f15a1508ecf2fa391aec\n"
    },
    {
      "commit": "49c5cf097debb6f7ce7c730ba5af2cba51be5a68",
      "tree": "cd0c882c37b60da0ab42b7bffaf06f017a142399",
      "parents": [
        "d196a6fce8d2fb0a6d0b396eded56de2580199b3"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Aug 06 10:30:44 2024 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Aug 06 10:30:44 2024 +0200"
      },
      "message": "make KorAP instance configurable\n\nsee example.conf\n\nChange-Id: Ia6ece608272cf21efba29e23f948434164487f3d\n"
    },
    {
      "commit": "06578a1c822abcb8dbae9df9267fe1725fd4c795",
      "tree": "1a73f2304bc8415bf9c9072d5c04efcd19720fa4",
      "parents": [
        "e58a749ec4bd8e9532414da99ba640ba130e795c"
      ],
      "author": {
        "name": "Rainer Perkuhn",
        "email": "perkuhn@ids-mannheim.de",
        "time": "Wed Jul 31 16:12:40 2024 +0200"
      },
      "committer": {
        "name": "Rainer Perkuhn",
        "email": "perkuhn@ids-mannheim.de",
        "time": "Wed Jul 31 16:12:40 2024 +0200"
      },
      "message": "Update index.html.ep,deleted wrong blank in RE"
    },
    {
      "commit": "e58a749ec4bd8e9532414da99ba640ba130e795c",
      "tree": "e063ac92b8412fd078bbe23bf0168f00be04ebd7",
      "parents": [
        "589172565f4105b182b22da51207bb0b24c72c9d"
      ],
      "author": {
        "name": "Rainer Perkuhn",
        "email": "perkuhn@ids-mannheim.de",
        "time": "Tue Jul 30 15:17:52 2024 +0200"
      },
      "committer": {
        "name": "Rainer Perkuhn",
        "email": "perkuhn@ids-mannheim.de",
        "time": "Tue Jul 30 15:17:52 2024 +0200"
      },
      "message": "Update index.html.ep, added \",s0\" to position specific queries in autofocus response visualization  "
    },
    {
      "commit": "d5010ecf0cd0506a1832f16542e01c734e4430ec",
      "tree": "2e392d426c98d66f017f4e0a0d87fbd74e06f397",
      "parents": [
        "5c0b0e1f8a6e6290d5f5719d6a32335c4f49720e"
      ],
      "author": {
        "name": "Rainer Perkuhn",
        "email": "perkuhn@ids-mannheim.de",
        "time": "Tue Jul 30 14:38:25 2024 +0200"
      },
      "committer": {
        "name": "Rainer Perkuhn",
        "email": "perkuhn@ids-mannheim.de",
        "time": "Tue Jul 30 14:38:25 2024 +0200"
      },
      "message": "Update index.html.ep, fix cosmas II queries for collocates with correct replacement of blank and| (also surrounded with blanks) by \"oder\"; modified cosmas II query proximity operator to /w1:5,s0 as appropriately reflecting context definition"
    },
    {
      "commit": "b37bd84fef2e5f0a6786144a7d36ee8c0cd3b580",
      "tree": "08a72327b0487e269ba1f191565462eede38ba41",
      "parents": [
        "dd8cfbeffdd66a5e8651ecc2bb79ef5c5c8007ca"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Apr 05 11:22:30 2024 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Apr 05 11:22:30 2024 +0200"
      },
      "message": "Add missing reference to latest derekovecs publication\n\nChange-Id: Ic729a6b01f92324c33ca778cff5a7a191b75beca\n"
    },
    {
      "commit": "4df553397d18576e86953a4b86659e85288b9168",
      "tree": "fda0e0688c62b358382c5b23c6d393b6c8d1eb33",
      "parents": [
        "18d7835dbed95ba42ec7308f6b5e77705d5c37dd"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Apr 05 09:55:56 2024 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Apr 05 09:58:42 2024 +0200"
      },
      "message": "Keep announcements for 100 days by default\n\nChange-Id: Idce630beb3220c46a9b1f16cd8d7cba758f6b18e\n"
    },
    {
      "commit": "898e548588d11c2e2142eb8c02c8b80a4a97417e",
      "tree": "b55aa8bd178e7f28b23d8e907aa89e6a610652d2",
      "parents": [
        "03e1bdc40e99bf96b3b22fae81b3c6e1014f6e55"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Feb 20 15:03:07 2024 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Feb 20 15:12:06 2024 +0100"
      },
      "message": "Add export buttons to data tables\n\nChange-Id: Ie05c400b0e19107148474a8f8735e83d92235107\n"
    },
    {
      "commit": "eacc63f81aa0781d5e1c3143b86182c3b930dc11",
      "tree": "96054625985c3f6fe612c67d34fca1d6f6adbfd0",
      "parents": [
        "2c84b5dddbe6e8d9b7c09a7ab5a81cb46eec75e0"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Nov 06 15:39:13 2023 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Nov 06 15:39:13 2023 +0100"
      },
      "message": "Show version information in footer\n\nChange-Id: Ib976168f8bdea14a092436f4e17441e8533405b1\n"
    },
    {
      "commit": "3576c62c5b5ef6998bf0799f70b3e419bfded41b",
      "tree": "4115c549a1a9f163f8fcc49777018823153c6c14",
      "parents": [
        "68e29be001bb9f0e6228aef2233aff284a75e72b"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Nov 05 08:51:58 2023 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Nov 05 08:51:58 2023 +0100"
      },
      "message": "Fetch downtime calendar on server side\n\nChange-Id: I15fbe6b42489fa233dc0e17c31910e8a06444a3c\n"
    },
    {
      "commit": "68e29be001bb9f0e6228aef2233aff284a75e72b",
      "tree": "1850e733d967350d43a13ae4eff02de379abe9a6",
      "parents": [
        "9ae184ce2b3ad55d7465add6fdf030b56e64acd6"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Nov 04 18:37:35 2023 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Nov 04 18:37:35 2023 +0100"
      },
      "message": "Fix calendar events path\n\nChange-Id: I2293bb8a532f818eca88fdbfb9309e825da9feef\n"
    },
    {
      "commit": "9ae184ce2b3ad55d7465add6fdf030b56e64acd6",
      "tree": "fb7a263f080097d06fd180150a760dac85f00fa2",
      "parents": [
        "ac4640204014bfe5684a24260127935408ad99bf"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Nov 04 18:21:54 2023 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Nov 04 18:23:03 2023 +0100"
      },
      "message": "Insert scheduled downtime infos from cloud calendar\n\nChange-Id: I8e4524126c08c4b89298e29b4c17588ef3997b71\n"
    },
    {
      "commit": "42e6d0965c67fe7e0641cb933d760e415f5c597a",
      "tree": "9a816618a39250268d36c926e77b14467b704c5e",
      "parents": [
        "da7b349d2611dc60a67bed087ab0c7b059dc8a58"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Apr 18 19:29:12 2023 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Apr 18 19:29:12 2023 +0200"
      },
      "message": "Fetch jquery via https\n\nFixes dereokovecs not working via https\n\nChange-Id: Ie334a15697674e9e04e87af3a452192727e49662\n"
    },
    {
      "commit": "89cb6bc0ca2cbed8209da15d8bb8ce36aefc84c4",
      "tree": "4fa8864939062000dbb34d4e99a8f6e664e85c41",
      "parents": [
        "497c5a4dc790dbf109e96eb4d9c4a60eafd13ae7"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Jul 17 16:51:53 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Jul 17 16:51:53 2022 +0200"
      },
      "message": "Update references again\n\nChange-Id: I4c45f979f57f26c911449972fb09ac9ea97c18f8\n"
    },
    {
      "commit": "497c5a4dc790dbf109e96eb4d9c4a60eafd13ae7",
      "tree": "45ff4cdcc212c8b29b3191120267d1383c28f7c1",
      "parents": [
        "a1f9702ba26a625dace432d3644df529d4de1e78"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Jul 17 16:39:33 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Jul 17 16:39:33 2022 +0200"
      },
      "message": "Update references\n\nChange-Id: Ia3c29c41fdc090a94c0d78af64c268ea880d762f\n"
    },
    {
      "commit": "b8b68e89180a291f128b6d75694aa5aa092391e2",
      "tree": "9ff04239e1ba76d514e7025ef04e30dc710b82c2",
      "parents": [
        "2133bd1786d6364818c5d52b85057e9cca9f180b"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu May 19 09:28:38 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu May 19 09:28:38 2022 +0200"
      },
      "message": "Add provisional CMLC 10 reference\n\nChange-Id: I63a3f8c595151144e6204976c77804f6a2993ae9\n"
    },
    {
      "commit": "2133bd1786d6364818c5d52b85057e9cca9f180b",
      "tree": "0ab2cfc1b7e6307a9a51bb2993370555e4a30af9",
      "parents": [
        "6017dafa08f73ec3d0346579d434f4c43d229f03"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu May 19 09:24:42 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu May 19 09:24:42 2022 +0200"
      },
      "message": "Add source code links to info page\n\nChange-Id: Ifb5d611efd5bb0f1d5d4228abc518abc51110c0d\n"
    },
    {
      "commit": "20476c79273fd590c9eb3025a7e776380cdf9927",
      "tree": "b437cffea8196474faa6f1ed0a627f34d3334aad",
      "parents": [
        "61f22bfc942a02f41fb1bd2accb4e4ddfbe80df0"
      ],
      "author": {
        "name": "Marc K",
        "email": "morckx@gmail.com",
        "time": "Thu Mar 11 12:18:01 2021 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Mar 11 17:18:28 2021 +0100"
      },
      "message": "Rename w2v -\u003e derekovecs\n"
    },
    {
      "commit": "61f22bfc942a02f41fb1bd2accb4e4ddfbe80df0",
      "tree": "9a696e52570b8bae718d15198c0e638feca9d561",
      "parents": [
        "4835e120eab86c237fd5cb13bb03cde86989191e"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Mar 09 12:56:12 2021 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Mar 09 12:56:12 2021 +0100"
      },
      "message": "derekovecs: fix typo in de/about.html.ep\n"
    },
    {
      "commit": "959615247171e92b45c59b6bf8468c577ffb3a0b",
      "tree": "b02a0f37a6566a7f0cb138305728ca63256e622c",
      "parents": [
        "1b856fae63de81fed0c3ca012792c711850119b3"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 07 23:02:57 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 07 23:02:57 2019 +0100"
      },
      "message": "derekovecs: comment out some unused references\n"
    },
    {
      "commit": "bb0f3fc3886063dab1b5439f51e84c2cbcf259a9",
      "tree": "87f81bf28c09bcc163c10df64e0e90d2f76c4da2",
      "parents": [
        "ce6490b46c460212353d3df90b5fb659efab9771"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 06 15:26:06 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 06 15:26:06 2019 +0100"
      },
      "message": "derekovecs: fix CII link\n"
    },
    {
      "commit": "ce6490b46c460212353d3df90b5fb659efab9771",
      "tree": "7ae6d3b8fdab68fa22f513db5c9a822a96777328",
      "parents": [
        "d6dfdf080f576d170092530aabc1afa6f5927c85"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 06 11:05:40 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 06 11:05:40 2019 +0100"
      },
      "message": "derekovecs: localize not found dialog\n"
    },
    {
      "commit": "d6dfdf080f576d170092530aabc1afa6f5927c85",
      "tree": "1d78f0ebd3aabbe36dae25419433eb34a90b0b4c",
      "parents": [
        "6d7462c4903e4b44086c83eaf273dba8f6e2cebf"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 06 09:53:34 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 06 09:53:34 2019 +0100"
      },
      "message": "derekovecs: replace former footer with about tab including references\n"
    },
    {
      "commit": "6d7462c4903e4b44086c83eaf273dba8f6e2cebf",
      "tree": "3b44939f18ddab4b4a033e2510604db44a4e62f6",
      "parents": [
        "9510451f272a1cacd176932b8b8baea40aee26a9"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Dec 05 10:16:38 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Dec 05 10:16:38 2019 +0100"
      },
      "message": "derekovecs: add IDS-logo\n"
    },
    {
      "commit": "9510451f272a1cacd176932b8b8baea40aee26a9",
      "tree": "3c481e3f6c5148c1ba1f5b81d0a1e7084760c35e",
      "parents": [
        "cddc8488ba9641bdc12101e2e9065fb89848eb83"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Dec 05 10:13:05 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Dec 05 10:13:05 2019 +0100"
      },
      "message": "derekovecs: add obvious parts of German localization\n"
    },
    {
      "commit": "cddc8488ba9641bdc12101e2e9065fb89848eb83",
      "tree": "43deabcb4194d33e36bcc3193f27f5599c9d291c",
      "parents": [
        "cb43e49cac12f2afd50855483ee4346392975fad"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Dec 04 08:57:33 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Dec 04 08:57:33 2019 +0100"
      },
      "message": "derekovecs: start empty if no word was given\n"
    },
    {
      "commit": "78230879b687af0f0a11adc420924a6510215b17",
      "tree": "2b037951257c3ccd5825878a17a82330aa371b11",
      "parents": [
        "56844a2b8ea2322a89a616681f0738d581c708de"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Aug 02 15:15:25 2019 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Aug 02 15:15:25 2019 +0200"
      },
      "message": "w2v-server: use vcs for KorAP queries\n"
    },
    {
      "commit": "b6514dc776f6a84b60d0e1f4e6f9e12401bee015",
      "tree": "f205f12dc47442ade760a1df00b49492b9b3f486",
      "parents": [
        "1233eda43bddaf49dae0bcfa00c3a8c4a7927a19"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jun 26 11:47:56 2019 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jun 26 11:47:56 2019 +0200"
      },
      "message": "derekovecs: handle the case when there is no 2nd model for comparison\n"
    },
    {
      "commit": "95977003ef714f848d3d735de85f9dfe910eeb0f",
      "tree": "ca64fe5837ccf0d182eb21deeccd595f948c7496",
      "parents": [
        "2da2a813023674d9e48bce631620e28f6edb9235"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Feb 26 09:09:59 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Feb 26 09:09:59 2019 +0100"
      },
      "message": "derekovecs: start outsourcing js from html-template to .js scripts\n"
    },
    {
      "commit": "d7760b4d53069026fcb99397a096795a9490c6aa",
      "tree": "39385c064950380d5d52a22309a011c878ef7ef4",
      "parents": [
        "001bffda2195814b6f265287e7d1bdbf0388111f"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Feb 21 09:01:44 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Feb 21 09:01:44 2019 +0100"
      },
      "message": "derekovecs: add tab for words with largest distances in reference space\n"
    },
    {
      "commit": "001bffda2195814b6f265287e7d1bdbf0388111f",
      "tree": "3b1bb36d5c3b976a6123e7af256f8643faf80623",
      "parents": [
        "4750d87924557e3a152bc5db0f00a55969ce6b38"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Feb 21 08:52:41 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Feb 21 08:52:41 2019 +0100"
      },
      "message": "derekovecs: default to min_analyzed(lD)-0.1 if reference collocate is not analyzed\n"
    },
    {
      "commit": "1d96a08a75f4708377787a5cc544878132c43aca",
      "tree": "8915884fd85adfd9a9f75a2a257ce105c1f55942",
      "parents": [
        "78d7c1a079d19ae9e5fe1de7a0852fbb6a699274"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Feb 18 09:29:06 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Feb 18 09:38:58 2019 +0100"
      },
      "message": "derekovecs: handle nan, inf and NA\n"
    },
    {
      "commit": "78d7c1a079d19ae9e5fe1de7a0852fbb6a699274",
      "tree": "7f2c8d9544cbb54d793422e4482a9edee560eea3",
      "parents": [
        "999ab8cf72293e7cd8eb9d619e187f38d9d9d1ea"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Feb 17 22:31:22 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Feb 18 09:18:17 2019 +0100"
      },
      "message": "derekovecs: fix mouse over and alignment cosmetics of collocate delta\n"
    },
    {
      "commit": "81aeed241f1c3dcd0f512fb97dca116bf1446ded",
      "tree": "6f9d9f47c798fcf08a1e6a058d45a24c8d090813",
      "parents": [
        "86b50290e5628dd70fb31c93af605a4be901c1fd"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Feb 17 21:22:45 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Feb 17 21:22:45 2019 +0100"
      },
      "message": "derekovecs: compare collocates with reference corpus\n"
    },
    {
      "commit": "86b50290e5628dd70fb31c93af605a4be901c1fd",
      "tree": "80cee803acc87df7ded47c7b4f23cf15761edcef",
      "parents": [
        "06d61290a1510d5ac70610dd19ee04e7dc3c60ab"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Feb 17 21:03:59 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun Feb 17 21:13:17 2019 +0100"
      },
      "message": "derekovecs: adjustemnts for english models\n"
    },
    {
      "commit": "4784fae491c864b0fec93ea470aa8d48fb3fb38b",
      "tree": "382de06a2ab6627b4d1f70c995b68416c2877c83",
      "parents": [
        "7b0e5dee5d4a00a2eb0f5d0ae14c1d86d0fcf451"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Feb 04 12:32:12 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Feb 04 12:32:12 2019 +0100"
      },
      "message": "derekokvecs: provide some marginal/meta data in CA\n"
    },
    {
      "commit": "7b0e5dee5d4a00a2eb0f5d0ae14c1d86d0fcf451",
      "tree": "5c0d36c9cc90b3b79899a3198891c9105b8855f3",
      "parents": [
        "7631e02c2376880c2530d8d704adfc687aa6f2bb"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jan 31 12:49:32 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jan 31 12:49:32 2019 +0100"
      },
      "message": "derekovecs: update mouse-overs\n"
    },
    {
      "commit": "29f5bbdcf59c13a56502d5465e4b568627acbaf9",
      "tree": "2a879aae66f2134589022475bddb13b4f31a5613",
      "parents": [
        "08bfd40ee4d5286e932b007f5fbf80175da999ab"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jan 24 15:12:59 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jan 24 15:12:59 2019 +0100"
      },
      "message": "collocatordb/derekovecs: provide information about where collocates appear\n"
    },
    {
      "commit": "08bfd40ee4d5286e932b007f5fbf80175da999ab",
      "tree": "90f314ca9e312dcf52bbd6400f2f7aba1cc072de",
      "parents": [
        "9c1a3d2c41a4fa3ee5b63b38e2e7cb1442e6ccf5"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jan 23 10:05:17 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jan 23 10:05:17 2019 +0100"
      },
      "message": "derekovecs: fix classic ca table width after \"close details\"\n"
    },
    {
      "commit": "9c1a3d2c41a4fa3ee5b63b38e2e7cb1442e6ccf5",
      "tree": "2d31977b45a3776edb5783ff326181a6e0849bb5",
      "parents": [
        "5f532b3a45acae41903e6c424fc88b467bd83d9f"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jan 23 10:04:18 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jan 23 10:04:18 2019 +0100"
      },
      "message": "derekovecs: add raw frequency tooltip to collocate\n"
    },
    {
      "commit": "5f532b3a45acae41903e6c424fc88b467bd83d9f",
      "tree": "d53a199baa04ecb2dd511924b90172b6df41144a",
      "parents": [
        "63b268f048bffe24ce1118dd5a0fafd0cdeee2a4"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jan 23 10:03:18 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jan 23 10:03:18 2019 +0100"
      },
      "message": "derekovecs: upgrade external js libraries\n"
    },
    {
      "commit": "63b268f048bffe24ce1118dd5a0fafd0cdeee2a4",
      "tree": "356cb49bcfd6370b2bef137933c4f80116612f30",
      "parents": [
        "fab14a7d4903548e30836ce1a4bf01b0d399e747"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 22 22:34:29 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 22 22:34:51 2019 +0100"
      },
      "message": "derekovecs/collocatordb: add auto-focus to collocation analysis\n\nUse the sub-window that yields the highest score – currently only for log-dice.\n"
    },
    {
      "commit": "fab14a7d4903548e30836ce1a4bf01b0d399e747",
      "tree": "e74cc6c6d3c4254635dfbc80fe7e27e00cf783be",
      "parents": [
        "9f732f079a3f061350044f55f6ca8d697ca4a697"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 22 16:20:29 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 22 16:21:39 2019 +0100"
      },
      "message": "derekovecs: add missing headings for new CA scores\n"
    },
    {
      "commit": "9f732f079a3f061350044f55f6ca8d697ca4a697",
      "tree": "457f85334f831fe13bd8ccba223ea3afee4dd71f",
      "parents": [
        "7046b8ab57e5601d76878f40c00697f3d4113071"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 22 16:19:51 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 22 16:19:51 2019 +0100"
      },
      "message": "derekovecs: include Dunnig-reference on LLR\n"
    },
    {
      "commit": "7046b8ab57e5601d76878f40c00697f3d4113071",
      "tree": "361ed3542db40d238e4243935d73d577e896820d",
      "parents": [
        "7bd55238b5b57cc4f47af63ad7d62dbe99436f26"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 22 16:18:32 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 22 16:18:32 2019 +0100"
      },
      "message": "derekovecs/collocatordb: default order by Log-Dice\n\nI agree with Adam Kilgarriff, Pavel Rychlý and Bryan Jurish. Log-Dice\ntypically gives a useful score, particulraly for our large corpora. It\nneither overemphasizes high frequency collocates (like LLR) nor low\nfrequency ones (like MI) and does so a little better than MI³, however\nnot always better than MI².\n"
    },
    {
      "commit": "7bd55238b5b57cc4f47af63ad7d62dbe99436f26",
      "tree": "94016ab9e997033e66a28944d6e49c63cbffddf0",
      "parents": [
        "bb3da6a41f49b2c8def1ccf79909ac3cb1429e18"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 22 15:29:06 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 22 15:31:22 2019 +0100"
      },
      "message": "derekovecs/collocatordb: add MI, MI², dice, and log-dice scores\n"
    },
    {
      "commit": "bb3da6a41f49b2c8def1ccf79909ac3cb1429e18",
      "tree": "56d7b8364d26227750f625489733e072e1cb53c7",
      "parents": [
        "f19814b967cc69b98820b51e815081a1fbca10ce"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 22 15:21:38 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 22 15:21:38 2019 +0100"
      },
      "message": "derkovecs: use collocate instead of collocator\n"
    },
    {
      "commit": "f19814b967cc69b98820b51e815081a1fbca10ce",
      "tree": "c6cc2a46477685b619b862bc413c32e34955a167",
      "parents": [
        "5270283a15f61d231a207fbb12314132389fbc65"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Jan 21 16:50:19 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Jan 21 16:50:19 2019 +0100"
      },
      "message": "collocatordb: user Evert\u0027s (2004) ll-function instead of Dunning\u0027s (1993)\n"
    },
    {
      "commit": "c053d9710ff95b44b50e76d3a72aeef1b2a8afc5",
      "tree": "a9d894242a89cc0f2dc0ff404a30f80cc79dfb7f",
      "parents": [
        "ee894d599ffb19e4fe6adf16f530400fbd94d3cb"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jan 10 10:41:51 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jan 10 10:42:39 2019 +0100"
      },
      "message": "derekovecs: add corpus name(s) to heading and page title\n"
    },
    {
      "commit": "ee894d599ffb19e4fe6adf16f530400fbd94d3cb",
      "tree": "a97c440bac555ad8e1e2b056a8925df583621395",
      "parents": [
        "3082fd02c6c6ae4862873eee53eb2d33fc3b1f83"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jan 09 14:55:14 2019 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jan 09 14:55:14 2019 +0100"
      },
      "message": "derekovecs: simply join lists of paradigmatic neigbours ico multiple targets\n"
    },
    {
      "commit": "2e2e4db35f1450cfca05509e85ee7884405440a8",
      "tree": "c9ebe2e2e534022d24b6ef8962fdbf6ad2c19090",
      "parents": [
        "e5568a0056f12f232b7a27e31fec98f0f34fc165"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 21 15:07:37 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 21 15:07:37 2018 +0100"
      },
      "message": "w2v-server: show merged vocabulary in with class \"merged\" (green)\n"
    },
    {
      "commit": "a55a09a721075cfe30acce56538dd2ff06988327",
      "tree": "12e1f05d7871ba83f6dd0c2b10d6165542c594bc",
      "parents": [
        "a8c98158f21e3a1a47165c92d1eb76d182876cc1"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Jul 06 13:30:30 2018 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Jul 06 13:30:30 2018 +0200"
      },
      "message": "derekovecs: disable ca-based similar profiles for now\n"
    },
    {
      "commit": "384c913503f0ceeece4d85ecb754cdfc1b9ddc2f",
      "tree": "f5bba2f8e178fcd0fc6f4f40712b422a4430628c",
      "parents": [
        "4949d2331ec9fa591c6f7d8b2723903e9497fda8"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Mar 19 16:45:24 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Mar 19 16:45:24 2018 +0100"
      },
      "message": "derekovecs: show similar profiles if present\n"
    },
    {
      "commit": "4949d2331ec9fa591c6f7d8b2723903e9497fda8",
      "tree": "0118442a1b5c89018061539df363a158545ccf6b",
      "parents": [
        "cdd5130cd51940eb3de1d13e81f764a574690f04"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Mar 19 16:43:18 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Mar 19 16:44:20 2018 +0100"
      },
      "message": "derekovecs: move css to separate file (2/2)\n"
    },
    {
      "commit": "cdd5130cd51940eb3de1d13e81f764a574690f04",
      "tree": "ee250ee87a31f97908a3237b5724b6197c5cabd1",
      "parents": [
        "a51dcfaf5fa96d7913195f2b8ffaecc03dec0fd1"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Mar 19 16:36:54 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Mar 19 16:41:17 2018 +0100"
      },
      "message": "derecovecs: start moving javascript to separate file\n"
    },
    {
      "commit": "deb8f622f74c428c3b78f9ae49e24787d75b4dde",
      "tree": "f704fbde90e41f98dd6e9dca6542e83240e98f6e",
      "parents": [
        "1acb31784beb7b61058e972fa213f3947ff8823a"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Mar 12 09:41:00 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Mar 12 09:41:00 2018 +0100"
      },
      "message": "derekovecs: flex layout + hidden details\n"
    },
    {
      "commit": "1acb31784beb7b61058e972fa213f3947ff8823a",
      "tree": "9ed7b98e822d6956ae7d708217e8c33bd6f2a37e",
      "parents": [
        "d5d0573442a7d9feb9ee9cc25c55ae5aa4479ec3"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Feb 17 09:41:26 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Feb 17 09:41:26 2018 +0100"
      },
      "message": "derekovecs: add option to hide details\n"
    },
    {
      "commit": "5a7f9aca949f26a5bdd4b43b4c639d01f7a2032f",
      "tree": "b325b0d6b143a10b2edc271444ba63a4397afcdd",
      "parents": [
        "cd136e21c5dfb7577282a0379a24af5cd4f3d449"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 30 11:22:44 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Jan 30 11:22:44 2018 +0100"
      },
      "message": "derekovecs: rename lfmd to pmi³\n\nPMI³ is probably more widely used and more easily recognized\n"
    },
    {
      "commit": "cd136e21c5dfb7577282a0379a24af5cd4f3d449",
      "tree": "7f82178a578eae0ff48be2dac6dc48e4ae1d0871",
      "parents": [
        "e871abd0c3aaa7c7819c585bcc94c1ec73bf9554"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Jan 29 09:18:12 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Jan 29 09:18:12 2018 +0100"
      },
      "message": "derekovecs: show classic collocator ths only if collocators exist\n"
    },
    {
      "commit": "e871abd0c3aaa7c7819c585bcc94c1ec73bf9554",
      "tree": "3e08ebefe6b141cdd57a16279682d6883dcc5f3b",
      "parents": [
        "b4b53cafc5b60115b59839f0b331baf91a60d291"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jan 25 16:18:27 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jan 25 16:18:27 2018 +0100"
      },
      "message": "derekovecs: adjust column heads when collocator tab is shown\n"
    },
    {
      "commit": "b4b53cafc5b60115b59839f0b331baf91a60d291",
      "tree": "408a41073c9d867c02fbb215788225fb86d778f2",
      "parents": [
        "a0ffb39bbb5547e79b56885b6fe6ad8fd794c3fe"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jan 25 08:57:11 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jan 25 08:57:11 2018 +0100"
      },
      "message": "derekovecs: show raw frequencies with classic collocators\n"
    },
    {
      "commit": "a0ffb39bbb5547e79b56885b6fe6ad8fd794c3fe",
      "tree": "1cc9437926a14e316e695ec059224218ccf9d711",
      "parents": [
        "e13a355bf4829c096642f5c035de79e23e83c730"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jan 25 08:53:43 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jan 25 08:55:08 2018 +0100"
      },
      "message": "derekovecs: more tootltip info on cohesion measures using MathJax\n"
    },
    {
      "commit": "8893dec98cb9439e1b3c929e82d8868002680b78",
      "tree": "93581b5b6cb05d4eeaa17bba64f275c7920575a1",
      "parents": [
        "cfcdcfc8849d9172d217d132f7eb2e28cbe28216"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jan 24 09:52:02 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jan 24 09:52:02 2018 +0100"
      },
      "message": "derekovecs: use GET instead of POST for classic collocators\n"
    },
    {
      "commit": "cfcdcfc8849d9172d217d132f7eb2e28cbe28216",
      "tree": "a91754c19ee22e1bdf4e385b3edb81b70036f9e6",
      "parents": [
        "65a7125f9b04322cfad072741c57d4536a39300f"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jan 24 09:51:26 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Jan 24 09:51:26 2018 +0100"
      },
      "message": "derekovecs: show association measures also for direct neighbours\n"
    },
    {
      "commit": "ad78372dc790a84804fbe9b6a17bab4e970f0107",
      "tree": "7dfc7e3225aa499303061f85882a4b27a9bef74c",
      "parents": [
        "78b434a525ec5f35f4478a7d281514477b4f294e"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Jan 13 17:45:21 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Jan 13 17:45:21 2018 +0100"
      },
      "message": "w2v-js: fix onclick bindings for collocators\n"
    },
    {
      "commit": "78b434a525ec5f35f4478a7d281514477b4f294e",
      "tree": "a11c9eecc14091fe161d80e4d1701619a591fcc8",
      "parents": [
        "e6a7a73901dd8f297b6339d21f961f858f03d0d0"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Jan 12 22:33:32 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Jan 12 22:33:32 2018 +0100"
      },
      "message": "w2v-js: ajax call for classic collocators from inside datatable\n"
    },
    {
      "commit": "e6a7a73901dd8f297b6339d21f961f858f03d0d0",
      "tree": "e5f7e09ecf9a71ba48c15c90e8183a359144bbf8",
      "parents": [
        "ebea470b68b0c0d0d24dd2118aa0d8848d304873"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Jan 12 09:21:08 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Jan 12 09:21:08 2018 +0100"
      },
      "message": "w2v-server-js: also show classical collocation analysis\n"
    },
    {
      "commit": "ebea470b68b0c0d0d24dd2118aa0d8848d304873",
      "tree": "b039b681ee95a40dcc33c1a7c0737ef335799c37",
      "parents": [
        "e243efd2d5339b10ac92594d1018711f79a5eeee"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Jan 12 09:16:09 2018 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Jan 12 09:16:09 2018 +0100"
      },
      "message": "w2v-server: more detailed info about training parameters\n"
    },
    {
      "commit": "66bfd95980f1838ef0ea4736222219036120e29c",
      "tree": "9e8750381a3f9f3d17a84a606898b6a659163423",
      "parents": [
        "c822118c37af4bb1f5e45b8f671b5320cd192057"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Dec 11 09:59:45 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Dec 11 09:59:45 2017 +0100"
      },
      "message": "w2v-server: add hidden button to show maps for collocators\n\nTODO:\n* put 2D-map functions into objects\n* parametrize dom destinations\n"
    },
    {
      "commit": "c822118c37af4bb1f5e45b8f671b5320cd192057",
      "tree": "4dccbb1c4d94cae43e5b69d613803bd8b6122861",
      "parents": [
        "b3a2e4f39a5cfc3302e8c6a5bdd541563dcd88ec"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 08 17:26:19 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 08 17:26:19 2017 +0100"
      },
      "message": "w2v-server: add monospace default font\n"
    },
    {
      "commit": "b3a2e4f39a5cfc3302e8c6a5bdd541563dcd88ec",
      "tree": "f9dadf5e94468cdfe909cc823d24fb60d6e52d68",
      "parents": [
        "4116b43f0f1786e67b838fe72fb69520150fb29a"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 08 17:25:53 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 08 17:25:53 2017 +0100"
      },
      "message": "w2v-server: fix KorAP search for multiple word alternatives\n"
    },
    {
      "commit": "4116b43f0f1786e67b838fe72fb69520150fb29a",
      "tree": "18737c4cfcf67c733153fd1209e298d676265e64",
      "parents": [
        "3eeb10278fc9ccbf51476465f7de8455ceb9b489"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Dec 06 14:15:32 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Dec 06 14:15:32 2017 +0100"
      },
      "message": "w2v-server: auto-focus based on maximized ⊥_w\u0027(a/c)\n\nand show average raw activations instead of co-norms\n"
    },
    {
      "commit": "3eeb10278fc9ccbf51476465f7de8455ceb9b489",
      "tree": "f72282e0f4b9f81b6b5fe794495c65f3c5cb2483",
      "parents": [
        "8f75b1f69f19f0da835e2c6509b00f5f7fcd6c63"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Dec 06 09:44:11 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Dec 06 09:44:11 2017 +0100"
      },
      "message": "w2v-server: add KorAP-links for each collocator window position\n"
    },
    {
      "commit": "8f75b1f69f19f0da835e2c6509b00f5f7fcd6c63",
      "tree": "d06a439ce2ae71c56b1ee174061102da15ede2d3",
      "parents": [
        "0ba5c815339150e827fe062f331081155874247f"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Dec 06 09:42:13 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Dec 06 09:42:13 2017 +0100"
      },
      "message": "w2v-server: show pointer cursor on KorAP-links\n"
    },
    {
      "commit": "0ba5c815339150e827fe062f331081155874247f",
      "tree": "8140f6c59c451dd4c4f46d75e8fe21509a741a8c",
      "parents": [
        "8f9c86a89b6bfc51b1934c1fa8dc6aba61649d60"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Dec 06 09:41:25 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Dec 06 09:41:25 2017 +0100"
      },
      "message": "w2v-server: activate tab based on localStorage only unless fragment specified\n"
    },
    {
      "commit": "8f9c86a89b6bfc51b1934c1fa8dc6aba61649d60",
      "tree": "6627c6af89479c15292ca618335c2bbc76e27b3a",
      "parents": [
        "d6b15441223c6cde595398a7b7d48832d410d31c"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Dec 04 17:17:13 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Dec 04 17:17:13 2017 +0100"
      },
      "message": "w2v-server: improve self-links in tsne-map and som\n"
    },
    {
      "commit": "d6b15441223c6cde595398a7b7d48832d410d31c",
      "tree": "c45d17af68016dd081ff6f890f84a1dcf2b352aa",
      "parents": [
        "451f8d8971952964c569ffdab2c4f28fe88bfa8b"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Dec 04 13:20:27 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Dec 04 13:20:27 2017 +0100"
      },
      "message": "w2v-server: rename datatable internal search to \"Filter\"\n"
    },
    {
      "commit": "451f8d8971952964c569ffdab2c4f28fe88bfa8b",
      "tree": "3eebcca45794c07b0046b7ec93421dfc384c50d8",
      "parents": [
        "5827066fda565594a7a8283d3256f7c1a0b90076"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Dec 04 13:19:47 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Dec 04 13:19:47 2017 +0100"
      },
      "message": "w2v-server: fix handling of oov words\n"
    },
    {
      "commit": "5827066fda565594a7a8283d3256f7c1a0b90076",
      "tree": "88e5ac030f884ce6804e90f41f53831ecd8fc820",
      "parents": [
        "0d4c0ca660040a0f15c872ac70d70288c17191d2"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Dec 04 12:10:06 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Dec 04 12:10:06 2017 +0100"
      },
      "message": "w2v-server: untabify\n"
    },
    {
      "commit": "0d4c0ca660040a0f15c872ac70d70288c17191d2",
      "tree": "3c485a2e5f12a472c5fa2196ec1680cd9541a0a8",
      "parents": [
        "ddaba63880ca3b7bd6d2dabfa08c7c1c4ea15dd4"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Dec 04 09:18:56 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon Dec 04 11:04:33 2017 +0100"
      },
      "message": "w2v-server: build similars table on the client side\n"
    },
    {
      "commit": "ddaba63880ca3b7bd6d2dabfa08c7c1c4ea15dd4",
      "tree": "c8fe55213fdae5784176f0156c358da138f92c29",
      "parents": [
        "52a3ec7ee54e21a490144a565b1ce254cb4c5b78"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 17:30:56 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 17:30:56 2017 +0100"
      },
      "message": "w2v-server: activate last active tab after tabs are initialized\n"
    },
    {
      "commit": "52a3ec7ee54e21a490144a565b1ce254cb4c5b78",
      "tree": "920fb10fdca374818e18b29d757e22958d5b0dba",
      "parents": [
        "6e6aaac625dfa031c99a02a888b7fd7d0ac03f41"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 16:59:56 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 16:59:56 2017 +0100"
      },
      "message": "Revert \"Revert \"w2v-server: generate tsne-map from js variables\"\"\n\nThis reverts commit 214d0416d82fb68b349132765a358af4c8d52ca1.\n"
    },
    {
      "commit": "6e6aaac625dfa031c99a02a888b7fd7d0ac03f41",
      "tree": "9da07a6278d5dc08df351fed0b870af3987f04ce",
      "parents": [
        "c4adc102cfe5e630af7229a3af07ca1b188f3739"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 15:56:14 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 15:56:14 2017 +0100"
      },
      "message": "Revert \"w2v-server: generate tsne-map from js variables\"\n\nThis reverts commit ff5cad5d3db388d1514aa99f8f91354063873952.\n"
    },
    {
      "commit": "c4adc102cfe5e630af7229a3af07ca1b188f3739",
      "tree": "920fb10fdca374818e18b29d757e22958d5b0dba",
      "parents": [
        "b2b7aa68c1895443b4bfe6d95a1c03c185836f4e"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 15:55:00 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 15:55:00 2017 +0100"
      },
      "message": "w2v-server: generate tsne-map from js variables\n"
    },
    {
      "commit": "b2b7aa68c1895443b4bfe6d95a1c03c185836f4e",
      "tree": "9da07a6278d5dc08df351fed0b870af3987f04ce",
      "parents": [
        "896c90923a1878a102901937e43ae07f45a5c32e"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 14:41:46 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 14:41:46 2017 +0100"
      },
      "message": "w2v-server: save active tab in localStorage\n"
    },
    {
      "commit": "896c90923a1878a102901937e43ae07f45a5c32e",
      "tree": "c145635bd3451186dc183edec4d9874ab0291d43",
      "parents": [
        "db2dc7e70143298cfefdc5f20d897c5040de438f"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 14:40:43 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 14:40:43 2017 +0100"
      },
      "message": "w2v-server: handle empty word\n"
    },
    {
      "commit": "728b8edf1f4e37020e11c0bfc8f790b859afca0a",
      "tree": "dbbc88e8c75445a94fb0961a0436926e46138ee2",
      "parents": [
        "b6c615d0c08d90a0e5a56809a7f21d2557688e38"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 11:13:49 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 11:13:49 2017 +0100"
      },
      "message": "w2v-server: improve heat depiction\n"
    },
    {
      "commit": "b6c615d0c08d90a0e5a56809a7f21d2557688e38",
      "tree": "d61cfc68481f42a9acc68840b4612428e8011dcb",
      "parents": [
        "aaae015998721a1bed891d709499a7f80c498879"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 10:38:20 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Dec 02 10:38:20 2017 +0100"
      },
      "message": "w2v-server: introduce position heats for collocators\n"
    },
    {
      "commit": "aaae015998721a1bed891d709499a7f80c498879",
      "tree": "4c93923f2be78e5a0093cc1f081cb826e369df36",
      "parents": [
        "c55c8874eb8d4e4b3f7b4bc55c44a97f0a3b7457"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 01 23:31:56 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 01 23:31:56 2017 +0100"
      },
      "message": "w2v-server: fix table of simiilars\n"
    },
    {
      "commit": "6e2fc10839af5349f149819648f6b479f5e47168",
      "tree": "7eea9dc4adf6e471524553b76d8120a3861b91ee",
      "parents": [
        "a6e08f005de5aaae497923a38435dacd0db5b005"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 01 22:07:23 2017 +0100"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Dec 01 22:07:23 2017 +0100"
      },
      "message": "w2v-server: hide rendering process\n"
    }
  ],
  "next": "a6e08f005de5aaae497923a38435dacd0db5b005"
}
