2024-07-12 - 大模型技术及交叉应用- 第三章- 应用实践 - 清华大学 - 刘知远

摘要

2024-07-28 周日 杭州 🌤

小记: 不要心急,凡事慢慢来,深呼吸

课程内容

1. Transformers 简介

2. 使用 Transformers

3. Transformers 实践

  • 导入依赖
pip install -y dataset 
pip install transformers==3.3.1
  • 编码示例
# This is a sample Python script.

# Press Shift+F10 to execute it or replace it with your code.
# Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.

from transformers   import pipeline
def print_hi(name):
    # Use a breakpoint in the code line below to debug your script.
    print(f'Hi, {name}')  # Press Ctrl+F8 to toggle the breakpoint.


# Press the green button in the gutter to run the script.
if __name__ == '__main__':
    print_hi('PyCharm')
    fier_send=pipeline("sentiment-analysis")
    fier_send('i love you')

总结

python 版本的问题需要搞一个脚本,或者在虚拟环境中运行了,每次都会有卡顿啊,难受。

posted @ 2024-07-28 15:25  流雨声  阅读(8)  评论(0编辑  收藏  举报