13 lines
504 B
Python
13 lines
504 B
Python
"""
|
|
Author: LiangSong(sl12160010@gmail.com)
|
|
Date: 2023-03-17 13:21:33
|
|
LastEditors: LiangSong(sl12160010@gmail.com)
|
|
LastEditTime: 2023-03-26 23:13:57
|
|
FilePath: /Open-Llama/models/llama.py
|
|
Description:
|
|
Building the Llama model proposed by Meta. https://arxiv.org/pdf/2302.13971.pdf
|
|
Performance and effectiveness optimization based on the implementation in the Transformer library.
|
|
https://github.com/Bayes-Song/transformers
|
|
Copyright (c) 2023 by LiangSong(sl12160010@gmail.com), All Rights Reserved.
|
|
"""
|