Skip to content

Commit

Permalink
fix #4: fix typo and add stemmer outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamed committed Mar 19, 2019
1 parent b0ea2e0 commit b94a784
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 16 deletions.
13 changes: 11 additions & 2 deletions content/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ Console.WriteLine(resp);

```python

########################## Call Stemmer ##########################
########################## Call SpellCorrector ##########################
url = baseUrl + "TextRefinement/SpellCorrector"
payload = u'''{\"text\": \"فهوه با مبات میجسبد\",
\"checkSlang\": true,
Expand Down Expand Up @@ -1199,6 +1199,8 @@ try {
از این تابع برای ریشه‌یابی عبارات استفاده می‌شود.
به عنوان مثال، خروجی متن کد نمونه به شکل زیر است

`[ { "wordComment": "", "simplePos": "", "rootWords": ["دریانورد", "دریا"], "verbInformation": null, "sentenceNumber": 0, "wordNumberInSentence": 0, "startCharIndex": 0, "word": "دریانوردانی", "tags": null, "firstRoot": "دریانورد", "wordCount": 1, "length": 11, "isVerb": false, "isPunc": false }, { "wordComment": "", "simplePos": "", "rootWords": ["فرشته"], "verbInformation": null, "sentenceNumber": 0, "wordNumberInSentence": 0, "startCharIndex": 0, "word": "فرشتگان", "tags": null, "firstRoot": "فرشته", "wordCount": 1, "length": 7, "isVerb": false, "isPunc": false } ]`

```csharp

string baseAddress = "https://api.text-mining.ir/api/";
Expand Down Expand Up @@ -1289,7 +1291,10 @@ try {
## ریشه یابی متن

برای نمایش ریشه افعال شکل گذشته ساده درنظر گرفته میشود و سایر اطلاعات صرفی فعل در متغیر ذیل وجود دارد:
verbInformation

خروجی کد نمونه به شرح زیر است:

‍‍‍‍‍`{دانشجویان,[دانشجو,دانش,دان]} {زیادی,[زیاد]} {به,[به]} {مدارس,[مدرسه]} {استعدادهای,[استعداد]} {درخشان,[درخشان]} {راه,[راه]} {پیدا,[پیدا]} {نخواهند کرد,[نکرد]} {که,[که]} {با,[با]} {مشکلات,[مشکل]} {بعدی,[بعد]} {مواجه,[مواجه]} {شوند,[شد]} {.,[]}`

```csharp

Expand Down Expand Up @@ -1475,6 +1480,10 @@ try {

لیستی از کلمات ورودی را ریشه‌یابی می‌کند.

خروجی کد نمونه به شرح زیر است:

‍`[ { "wordComment":"مشاجرات", "simplePos":"", "rootWords":[ "مشاجرات", "مشاجره" ], "verbInformation":null, "sentenceNumber":1, "wordNumberInSentence":0, "startCharIndex":0, "word":"مشاجرات", "tags":{ }, "firstRoot":"مشاجرات", "wordCount":1, "length":7, "isVerb":false, "isPunc":false }, { "wordComment":"دریانوردانی", "simplePos":"", "rootWords":[ "دریانورد", "دریا" ], "verbInformation":null, "sentenceNumber":1, "wordNumberInSentence":1, "startCharIndex":8, "word":"دریانوردانی", "tags":{ }, "firstRoot":"دریانورد", "wordCount":1, "length":11, "isVerb":false, "isPunc":false }, { "wordComment":"جزایر", "simplePos":"", "rootWords":[ "جزیره" ], "verbInformation":null, "sentenceNumber":1, "wordNumberInSentence":2, "startCharIndex":20, "word":"جزایر", "tags":{ }, "firstRoot":"جزیره", "wordCount":1, "length":5, "isVerb":false, "isPunc":false }, { "wordComment":"فرشتگان", "simplePos":"", "rootWords":[ "فرشته" ], "verbInformation":null, "sentenceNumber":1, "wordNumberInSentence":3, "startCharIndex":26, "word":"فرشتگان", "tags":{ }, "firstRoot":"فرشته", "wordCount":1, "length":7, "isVerb":false, "isPunc":false }, { "wordComment":"تنها", "simplePos":"", "rootWords":[ "تنها" ], "verbInformation":null, "sentenceNumber":1, "wordNumberInSentence":4, "startCharIndex":34, "word":"تنها", "tags":{ }, "firstRoot":"تنها", "wordCount":1, "length":4, "isVerb":false, "isPunc":false } ]`

```csharp

string baseAddress = "https://api.text-mining.ir/api/";
Expand Down
48 changes: 34 additions & 14 deletions themes/docuapi/static/slate/stylesheets/rtl.css
Original file line number Diff line number Diff line change
@@ -1,19 +1,39 @@
body,html,h1,h2,h3,h4,h5,h6{
font-family: Vazir !important;
body,
html,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Vazir !important;
}
.content p,.content aside, h1,h2,h3,h4,h5,h6,
.tocify-wrapper .tocify-item>a,.tocify-wrapper .toc-footer li,
.tocify-wrapper .toc-footer a,
.content table, .content table td,
.content table th, ul li{
direction: rtl ;text-align: right;
.content p,
.content aside,
h1,
h2,
h3,
h4,
h5,
h6,
.tocify-wrapper .tocify-item > a,
.tocify-wrapper .toc-footer li,
.tocify-wrapper .toc-footer a,
.content table,
.content table td,
.content table th,
ul li {
direction: rtl;
text-align: right;
}
.content code, .content p code{
direction: ltr;text-align: left;
.content code,
.content p code {
direction: ltr;
text-align: left;
}
.content table{
overflow: inherit;
.content table {
overflow: inherit;
}
.content p{
line-height: 2em;
.content p {
line-height: 2em;
}

0 comments on commit b94a784

Please sign in to comment.