Views
No views yet
Question: What is the meaning of life? That was all- a simple question; one that tended to close in on one with years, the great revelation had never come. The great revelation perhaps never did come. Instead, there were little daily miracles, illuminations, matches struck unexpectedly in the dark; here was one.
Answer: Hayatın anlamı nedir? Bu basit bir soruydu. Yıllar geçtikçe insanın içine kapanmaya eğilimli olan bir soruydu. Büyük vahiy hiç gelmemişti. Büyük vahiy belki de hiç gelmemişti. Bunun yerine, küçük günlük mucizeler, aydınlatmalar, karanlıkta beklenmedik şekilde ateşler açılırdı. İşte bir tanesi.1model = AutoModelForSeq2SeqLM.from_pretrained(model_name, device_map="auto")
2tokenizer = AutoTokenizer.from_pretrained(model_name, src_lang=src_lang, tgt_lang=tgt_lang)
3translator = pipeline('translation', model=model, tokenizer=tokenizer, src_lang=src_lang, tgt_lang=tgt_lang, device_map="auto")
4output = translator(question_prompt, max_length=512)[0]['translation_text']
5