MAXENTモデルが自分のdownload-siteに上場し、現在私は、POS-タグドイツ語の文章にOpenNLPツールを使用しています:
de POS Tagger Maxent model trained on tiger corpus. de-pos-maxent.bin
をこれは非常にうまく機能し、私のように結果を得た:で
Diese, Community, bietet,
カテゴリのリストとそのカテゴリに基づいた記事のみを表示するカテゴリの詳細ビューを作成するまでのURLを表示するカスタムタグを作成しました。 from blog.models import Category, Entry
from django.shortcuts import render_to_response, get_object_or_404
from django.views.gen
SELECT thread.id AS p_id, post.title, post.content, author.username, author.id AS a_id
FROM thread INNER JOIN author
ON author_id = author.id
ORDER BY thread.created DESC