Skip to content

Commit

Permalink
WIP: Fixing Netlify CMS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsattarian committed Jul 28, 2020
1 parent 376b931 commit 73e0a7e
Show file tree
Hide file tree
Showing 42 changed files with 378 additions and 18 deletions.
7 changes: 0 additions & 7 deletions .md

This file was deleted.

1 change: 0 additions & 1 deletion A/accuracy.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ layout: word
word: accuracy
translation: کارایی
tags:
- word
- A
---

Expand Down
1 change: 0 additions & 1 deletion A/action.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ layout: word
word: action
translation: عمل
tags:
- word
- A
---

Expand Down
65 changes: 63 additions & 2 deletions _admin/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
backend:
# name: test-repo
name: git-gateway
branch: develop # Branch to update (optional; defaults to master)

Expand All @@ -14,7 +15,8 @@ collections:
label: "Word" # Used in the UI
folder: "/" # The path to the folder where the documents are stored
create: true # Allow users to create new documents in this collection
slug: "{{slug}}" # Filename template, e.g., YYYY-MM-DD-title.md
slug: "{{word}}" # Filename template, e.g., YYYY-MM-DD-title.md
identifier_field: word
fields: # The fields for each document, usually in front matter
- {
label: "_layout",
Expand All @@ -33,7 +35,35 @@ collections:
- label: "Tags"
name: "tags"
widget: "select"
options: ["A", "B", "C", "D"]
options:
[
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K",
"L",
"M",
"N",
"O",
"P",
"Q",
"R",
"S",
"T",
"U",
"V",
"W",
"X",
"Y",
"Z",
]

# - label: "Tags"
# name: "tags"
Expand All @@ -43,3 +73,34 @@ collections:
# valueField: "name"

- { label: "Body", name: "body", widget: "markdown" }
view_filters:
- label: "Alice's and Bob's Posts"
field: author
pattern: "Alice|Bob"
- label: "Posts published in 2020"
field: date
pattern: "2020"
- label: Drafts
field: draft
pattern: true

- name: pages
label: Pages
label_singular: "Page"
folder: words
create: true
# adding a nested object will show the collection folder structure
nested:
depth: 2 # max depth to show in the collection tree
summary: "{{title}}" # optional summary for a tree node, defaults to the inferred title field
identifier_field: word
fields:
- label: Title
name: word
widget: string
- label: Body
name: body
widget: markdown
# adding a meta object with a path property allows editing the path of entries
# moving an existing entry will move the entire sub tree of the entry to the new location
meta: { path: { widget: string, label: "Path", index_file: "index" } }

This file was deleted.

11 changes: 11 additions & 0 deletions words/A/A.njk
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<link rel="stylesheet" href="/assets/words.css"/>

{%- for word in collections.A -%}
<details>
<summary>
<a href="{{word.url}}">{{ word.data.word }}</a>
</summary>
{{word.templateContent | safe}}
<!-- <p>Epcot is a theme park at Walt Disney World Resort featuring exciting attractions, international pavilions, award-winning fireworks and seasonal special events.</p> -->
</details>
{%- endfor -%}
12 changes: 12 additions & 0 deletions words/A/a-b_testing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
layout: word
word: A/B Testing
translation: آزمایش A/B
tags:
- word
- A
---

یک روش آماری است که به کمک آن می‌توان یک یا دو شیوه (تکنیک) را مقایسه کرد. به طور معمول یک وظیفه لازم در برابر رقیب جدید است که هدف آن تنها تعیین عملکرد بهتر نیست؛ بلکه برای اینکه درک کنیم آیا این تفاوت از نظر آماری معنادار است یا خیر نیز کاربرد دارد.

آزمایش A/B معمولاً تنها دو شیوه (تکنیک) را با استفاده از یک اندازه گیری در نظر می‌گیرد ، اما می‌تواند برای هر تعداد محدودی از تکنیک‌ها و اقدامات استفاده شود.
16 changes: 16 additions & 0 deletions words/A/accuracy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: word
word: accuracy
translation: کارایی
tags:
- A
---

کسری از [پیش‌بینی‌های](/P/prediction/) درست یک [مدل طبقه‌بندی](/C/classification_model/) است که در [طبقه‌بندی چند کلاسه](/M/multi-class_classification/) به صورت زیر تعریف می‌شود:

کارایی = تعداد کل نمونه‌ها/پیش‌بینی‌های درست

در [طبقه‌بند دودویی](/B/binary_classification/) کارایی به صورت زیر تعریف می‌شود :

[مثبت واقعی](/T/true_positive_(tp)/) + [منفی واقعی](/T/true_negative_(tn)/)/تعداد کل نمونه‌ها

9 changes: 9 additions & 0 deletions words/A/action.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: word
word: action
translation: عمل
tags:
- A
---

ساز و کاری که توسط آن [عامل](/A/agent/) بین حالت‌های محیط تغییر می‌کند.عامل عملش را با استفاده از خط مشی انتخاب می‌کند.
8 changes: 8 additions & 0 deletions words/A/activation_function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: activation_function
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/active_learning.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: active_learning
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/adagrad.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: adagrad
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/agent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: agent
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/agglomerative_clustering.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: agglomerative_clustering
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/ar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: ar
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/area_under_the_pr_curve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: area_under_the_pr_curve
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/area_under_the_roc_curve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: area_under_the_roc_curve
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/artificial_general_intelligence.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: artificial_general_intelligence
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/artificial_intelligence.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: artificial_intelligence
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/attribute.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: attribute
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/auc_(area_under_the_roc_curve).md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: auc_(area_under_the_roc_curve)
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/augmented_reality.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: augmented_reality
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/automation_bias.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: automation_bias
tags:
- word
- A
---

8 changes: 8 additions & 0 deletions words/A/average_precision.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: average_precision
tags:
- word
- A
---

11 changes: 11 additions & 0 deletions words/B/B.njk
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<link rel="stylesheet" href="/assets/words.css"/>

{%- for word in collections.B -%}
<details>
<summary>
<a href="{{word.url}}">{{ word.data.word }}</a>
</summary>
{{word.templateContent | safe}}
<!-- <p>Epcot is a theme park at Walt Disney World Resort featuring exciting attractions, international pavilions, award-winning fireworks and seasonal special events.</p> -->
</details>
{%- endfor -%}
8 changes: 8 additions & 0 deletions words/B/backpropagation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: backpropagation
tags:
- word
- B
---

8 changes: 8 additions & 0 deletions words/B/bag_of_words.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: bag_of_words
tags:
- word
- B
---

8 changes: 8 additions & 0 deletions words/B/baseline.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: baseline
tags:
- word
- B
---

8 changes: 8 additions & 0 deletions words/B/batch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: batch
tags:
- word
- B
---

8 changes: 8 additions & 0 deletions words/B/batch_normalization.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: batch_normalization
tags:
- word
- B
---

8 changes: 8 additions & 0 deletions words/B/batch_size.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: word
word: batch_size
tags:
- word
- B
---

Loading

0 comments on commit 73e0a7e

Please sign in to comment.