kuotient commited on
Commit
7f76497
·
verified ·
1 Parent(s): 57e6bb0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -5
README.md CHANGED
@@ -8,7 +8,7 @@ pipeline_tag: translation
8
  tags:
9
  - translate
10
  ---
11
- # **Seagull-13b-translation 📇**
12
  ![Seagull-typewriter](./Seagull-typewriter.png)
13
  **Seagull-13b-translation** is yet another translator model, but carefully considered the following issues from existing translation models.
14
  - `newline` or `space` not matching the original text
@@ -25,7 +25,7 @@ For a coffee chat or if you have any questions, please do not hesitate to contac
25
 
26
  This model was created as a personal experiment, unrelated to the organization I work for.
27
 
28
- # **License**
29
  ## From original model author:
30
  - Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License, under LLAMA 2 COMMUNITY LICENSE AGREEMENT
31
  - Full License available at: https://huggingface.co/beomi/llama-2-koen-13b/blob/main/LICENSE
@@ -41,8 +41,8 @@ Jisoo Kim(kuotient)
41
  - 기술과학 분야 한-영 번역 병렬 말뭉치 데이터
42
  - 일상생활 및 구어체 한-영 번역 병렬 말뭉치 데이터
43
 
44
- ## Usage
45
- #### Format
46
  It follows only **ChatML** format.
47
 
48
  ```python
@@ -62,7 +62,18 @@ It follows only **ChatML** format.
62
  # Don't miss newline here
63
  ```
64
 
65
- #### Example code
 
 
 
 
 
 
 
 
 
 
 
66
  **I highly recommend to inference model with vllm. I will write a guide for quick and easy inference if requested.**
67
  Since, chat_template already contains insturction format above.
68
  You can use the code below.
 
8
  tags:
9
  - translate
10
  ---
11
+ ## **Seagull-13b-translation 📇**
12
  ![Seagull-typewriter](./Seagull-typewriter.png)
13
  **Seagull-13b-translation** is yet another translator model, but carefully considered the following issues from existing translation models.
14
  - `newline` or `space` not matching the original text
 
25
 
26
  This model was created as a personal experiment, unrelated to the organization I work for.
27
 
28
+ ## **License**
29
  ## From original model author:
30
  - Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License, under LLAMA 2 COMMUNITY LICENSE AGREEMENT
31
  - Full License available at: https://huggingface.co/beomi/llama-2-koen-13b/blob/main/LICENSE
 
41
  - 기술과학 분야 한-영 번역 병렬 말뭉치 데이터
42
  - 일상생활 및 구어체 한-영 번역 병렬 말뭉치 데이터
43
 
44
+ ## **Usage**
45
+ #### **Format**
46
  It follows only **ChatML** format.
47
 
48
  ```python
 
62
  # Don't miss newline here
63
  ```
64
 
65
+ #### Output example
66
+ 원문:
67
+ > A particle's wave function, $\psi(x)$, is given by $$\psi(x)=\begin{cases} 3x & \text{if } -1 \leq x \leq 0 \\ 3(1-x) & \text{if } 0 < x \leq 1 \\ 0 & \text{otherwise} \end{cases}$$ Compute the Fourier transform, $\tilde{\psi}(k)$, of the wave function $\psi(x)$ and show that it satisfies the Fourier inversion theorem, i.e., $\psi(x) = \frac{1}{\sqrt{2\pi}} \int_{-\infty}^{\infty} \tilde{\psi}(k) e^{ikx} \mathrm{d}k$.
68
+
69
+ Seagull-13b-translation:
70
+ > 입자의 파동 함수 $\psi(x)$는 다음과 같이 주어집니다. $$\psi(x)=\begin{cases} 3x & \text{if } -1 \leq x \leq 0 \\ 3(1-x) & \text{if } 0 < x \leq 1 \\ 0 & \text{otherwise} \end{cases}$$ 파동 함수 $\psi(x)$의 푸리에 변환 $\tilde{\psi}(k)$를 계산하고 푸리에 반전 정리, 즉 $\psi(x) = \frac{1}{\sqrt{2\pi}} \int_{-\infty}^{\infty} \tilde{\psi}(k) e^{ikx} \mathrm{d}k$를 만족합니다.
71
+
72
+ DeepL:
73
+ > 입자의 파동 함수 $\psi(x)$는 $$\psi(x)=\begin{cases}로 주어집니다. 3x & \text{if } -1 \leq x \leq 0 \\ 3(1-x) & \text{if } 0 < x \leq 1 \\ 0 & \text{기타} \end{cases}$$ 파동 함수 $\psi(x)$의 푸리에 변환인 $\tilde{\psi}(k)$를 계산하고 푸리에 반전 정리, 즉 $\psi(x) = \frac{1}{\sqrt{2\pi}}를 만족함을 증명합니다. \int_{-\infty}^{\infty} \물결표{\psi}(k) e^{ikx} \mathrm{d}k$.
74
+
75
+ ...and much more awesome case with SQL query, code, markdowns!
76
+ #### **How to**
77
  **I highly recommend to inference model with vllm. I will write a guide for quick and easy inference if requested.**
78
  Since, chat_template already contains insturction format above.
79
  You can use the code below.