Skip to content

Commit 6a673c3

Browse files
authored
Merge pull request #4 from cltk/v1-chs
V1 chs
2 parents ac1ef5e + 8c0837b commit 6a673c3

12 files changed

Lines changed: 15 additions & 14 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
.idea
12
_site
23
.sass-cache

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ url: "http://cltk.org" # the base hostname & protocol for your site
88
#twitter_username: kyle_p_johnson
99
github_username: cltk
1010
github_cltk: cltk/cltk
11-
copyright: 2019 Kyle P. Johnson
11+
copyright: 2021 Kyle P. Johnson
1212

1313
# Build settings
1414
highlighter: rouge

_posts/2015-05-10-new-lemmatizer-greek-latin.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ With any lemmatizer, choices must be made about which headword to select in the
1212

1313
The logic I use in the above algorithms is sound, however of course this will not be without flaws. I believe that the best way to improve these lemma-headword lists is to manually write corrections, which will be run over the automatically built file. Any corrections should be submitted to the [CLTK's issues tracker](https://github.com/kylepjohnson/cltk/issues).
1414

15-
Docs for use of the Greek lemmatizer: <http://docs.cltk.org/en/latest/greek.html#lemmatization>
15+
Docs for use of the Greek lemmatizer: <http://legacy.cltk.org/en/latest/greek.html#lemmatization>
1616

17-
Docs for use of the Latin lemmatizer: <http://docs.cltk.org/en/latest/latin.html#lemmatization>
17+
Docs for use of the Latin lemmatizer: <http://legacy.cltk.org/en/latest/latin.html#lemmatization>
1818

1919
Code repository for making Greek lemma-headword list: <https://github.com/cltk/greek_lexica_perseus>
2020

_posts/2015-07-11-new-latin-prosody-scanner.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ joseph.kirby12@ncf.edu
2626

2727
# CLTK Docs
2828

29-
Docs for Latin prosody module: <http://docs.cltk.org/en/latest/latin.html#prosody-scanning>.
29+
Docs for Latin prosody module: <http://legacy.cltk.org/en/latest/latin.html#prosody-scanning>.
3030

3131
Code for Latin prosody module: <https://github.com/kylepjohnson/cltk/blob/master/cltk/prosody/latin/scanner.py>.
3232

_posts/2015-08-02-tokenizing-latin-text.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ Using the CLTK WordTokenizer for Latin we retain the punctuation and split the s
4545
More on tokenization:
4646

4747
* [Processing Raw Text in the NLTK book](http://www.nltk.org/book/ch03.html)
48-
* [CLTK documentation for WordTokenizer](http://docs.cltk.org/en/latest/latin.html#word-tokenization)
48+
* [CLTK documentation for WordTokenizer](http://legacy.cltk.org/en/latest/latin.html#word-tokenization)
4949
* [Text Mining Online](http://textminingonline.com/dive-into-nltk-part-ii-sentence-tokenize-and-word-tokenize)
5050
* [Text Analysis with Topic Models for the Humanities and Social Sciences](https://de.dariah.eu/tatom/preprocessing.html#tokenizing)

_posts/2015-08-02-updated-accuracies-pos-taggers.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ The testing corpus I had used, however, was considerably skewed. Essentially, th
4040

4141
The TnT algorithm returns the best results at 83% accuracy for Greek and 70% for Latin. These are not bad scores, it seems to me, however they are something of a letdown from scores in the high 90's which I claimed earlier!
4242

43-
To get the latest taggers, update your `greek_models_cltk` and `latin_models_cltk` files ([directions here](http://docs.cltk.org/en/latest/importing_corpora.html#importing-a-corpus)).
43+
To get the latest taggers, update your `greek_models_cltk` and `latin_models_cltk` files ([directions here](http://legacy.cltk.org/en/latest/importing_corpora.html#importing-a-corpus)).
4444

4545
I give sincere thanks to Giuseppe and also apologize to anyone who was mislead by my mistake.

_posts/2016-03-27-analyzing-latin-clausulae.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ Type 5a | Cretic + Double Spondee | - u - / - - / - x
7373
Type 6 | Dactyl + Spondee | - u u / - x
7474

7575
\\
76-
For more information, see [Clausulae analyses docs](http://docs.cltk.org/en/latest/latin.html#clausulae-analysis).
76+
For more information, see [Clausulae analyses docs](http://legacy.cltk.org/en/latest/latin.html#clausulae-analysis).

_posts/2017-03-01-cltk-google-summer-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See our organization's [official GSoC page](https://summerofcode.withgoogle.com/
1414

1515
> See our [Project ideas page](https://github.com/cltk/cltk/wiki/Project-ideas#gsoc-projects) for a list of GSOC tasks that are suited to three months' work for a beginning–to–intermediate programmer or language student. What follows is a high–level overview of these projects and a few tips in applying. Most work will be done in the Python and JavaScript languages, of which a beginner's or intermediate knowledge is expected.
1616
>
17-
> If you know a Classical language that is not yet supported well by the CLTK (e.g., Hebrew, Sanskrit, Chinese), you may follow the pattern set by the current Greek and Latin libraries. See the Projects page on the wiki for ideas of what a good application will include. See also [the CLTK docs](http://docs.cltk.org) for what we can already do for a given language.
17+
> If you know a Classical language that is not yet supported well by the CLTK (e.g., Hebrew, Sanskrit, Chinese), you may follow the pattern set by the current Greek and Latin libraries. See the Projects page on the wiki for ideas of what a good application will include. See also [the CLTK docs](http://legacy.cltk.org) for what we can already do for a given language.
1818
>
1919
> The other family of tasks regards the CLTK's in–development website, the Classical Language Archive ([in Meteor and React](https://github.com/cltk/cltk_frontend)) and API ([in Python's Flask framework](https://github.com/cltk/cltk_api_v2)). See our description of the frontend, experiment with the live demo, and explain in your application which functionality you would most like to see added, why, and how you will do so over the course of three months.
2020
>

docs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Docs (v0.1)
2+
title: Legacy Docs (v0.1.x)
33
redirect_to:
4-
- https://docs.cltk.org
4+
- https://legacy.cltk.org
55
---

docs_v10.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Docs (v1.0)
2+
title: Docs
33
redirect_to:
4-
- https://dev.cltk.org
4+
- https://docs.cltk.org
55
---

0 commit comments

Comments
 (0)