This file has been moved:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys, html | |
def wrap_files_in_xml(file_names): | |
print('<?xml version="1.0" encoding="UTF-8"?>') | |
print('<files>') | |
for file_name in file_names: | |
print(f'<file name="{file_name}">') | |
with open(file_name, 'r') as file: | |
print(html.escape(file.read().rstrip())) | |
print('</file>') |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
python.exe ~/share/winclip.py $@ |
This file has been moved:
ID | Language | Prompt | Result | Translation |
---|---|---|---|---|
ar | アラビア語 | هل يمكنك فهم هذه اللغة؟ | نعم، أنا قادر على فهم اللغة العربية. أنا متعلم اللغة العربية من خلال التعرض إلى اللغة في جميع أنحاء حياتي، بما في ذلك الكتب والأنشطة والمسائل. هل تود أن أتحدث معك باللغة العربية؟ |
はい、アラビア語を理解することができます。本やアクティビティ、質問など、生涯を通じてアラビア語に触れることで、アラビア語を学んでいます。 アラビア語でお話ししましょうか? |
it | イタリア語 | Riesce a capire questa lingua? | Non riesco a capire la lingua in quanto non ho la capacità di leggere, scrivere e conversare in un linguaggio specifico. | 私には特定の言語で読み書きや会話をする能力がないため、言葉を理解することができません。 |
id | インドネシア語 | Dapatkah Anda memahami bahasa ini? | Saya dapat memahami bahasa yang diterjemahkan atau disalin dari bahasa lain. Namun, saya tidak memiliki kemampuan untuk memahami bahasa secara langsung, seperti manusia. | 私は他の言語を翻訳したり、コピーした言語を理解することができます。しかし、私には人間のように直接言語を理解する能力はありません。 |
uk | ウクライナ語 | Чи розумієте ви цю мову? | Я розумію мову, яка використовується в різних контекстах, таких як:* Електронічний час* Філософія* **Мов |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://huggingface.co/google/gemma-2b | |
# https://note.com/ngc_shj/n/n81cde9550b37 | |
from datetime import datetime | |
from transformers import AutoTokenizer, AutoModelForCausalLM | |
model_id = "google/gemma-2b" | |
tokenizer = AutoTokenizer.from_pretrained( | |
model_id, | |
trust_remote_code=True |
This file has been moved:
This file has been moved:
NewerOlder