1,761 2 months ago

PLaMo Translation Model is a specialized large-scale language model developed by Preferred Networks for translation tasks.

4be07a73a69a · 436B
<|plamo:op|>dataset
translation
{{ $system := .System }}
{{- range $i, $_ := .Messages -}}
{{- $last := eq (len (slice $.Messages $i)) 1 -}}
{{- if eq .Role "user" -}}<|plamo:op|>input
{{ .Content }}
{{ if $last -}}<|plamo:op|>output{{- if $system }} lang={{- $system -}}{{- end -}}{{- end -}}
{{- else if eq .Role "assistant" -}}<|plamo:op|>output{{- if $system }} lang={{- $system -}}{{- end -}}
{{ .Content }}
{{- end -}}
{{- end }}