“Inter-fractional portability of deep learning models for lung target tracking on cine imaging acquired in MRI-guided radiotherapy”
2024年 期刊 Physical and Engineering Sciences in Medicine 医学4区
没资源,只读了摘要,用的是U-net、a…
引言
今天带来经典论文 LLaMA: Open and Efficient Foundation Language Models 的笔记,论文标题翻译过来就是 LLaMA:开放和高效的基础语言模型。
LLaMA提供了不可多得的大模型开发思路,为很多国产化大模型打开了一片新的天地,论文和代码值…
本笔记主要记录单层感知机的相关内容,包括单层单输出,和单层多输出。
import tensorflow as tf
import numpy as nptf.__version__#单层单输出感知机,逻辑回归很类似,主要区别就是激活函数和损失函数不同
#单层感知机的激活函数通…