training a simple model using tensorflow
2026-3-27
安装TensorFlow,这里直接使用当前用户安装,不需要使用root用户安装。$ pip install tensorflow初试牛刀训练一个线性回归(Linear Regression)模型,计算华氏温度F = 9/5 * C + 32第一步,生成训练数据:import numpy as npi
CNN vs Transformer
2026-4-20
CNN(卷积神经网络)和Transformer是深度学习领域两种主流神经网络架构,分别擅长处理局部特征提取和全局依赖建模,在计算机视觉、自然语言处理等任务中各有优势 。核心架构与工作原理CNN 的核心机制:通过卷积层、池化层和全连接层的层级结构,自动提取输入数据的局部特征,具备参数共享和
using conda install tensorflow
2026-4-26
在fedora 43上,python的版本是3.14$ python --versionPython 3.14.4使用pip安装tensorflow$ pip install tensorflowDefaulting to user installation because normal site-
笔记:What is deep learning
2026-4-30
这一系列的文章,记录Deep Learning with Python 3rd edition这本书的学习笔记。代码仓库:https://github.com/fchollet/deep-learning-with-python-notebooks在线阅读:https://deeplearningw
笔记:The mathematical building blocks of neural networks
2026-5-10
本文学习Deep Learning with Python 3rd edition的第二章。在线阅读:https://deeplearningwithpython.io/chapters/chapter02_mathematical-building-blocks/ A first look at
YOLO
2026-7-5
You Only Look Once实现目标检测、图像分割的模型。它发展了一系列的版本,最新的几个版本yolo26, yolo11, yolo8是ultralytics开发的。官网: https://docs.ultralytics.com/代码库: https://github.com/ultra
deploy yolo26 cls via onnx runtime python
2026-7-5
接上一篇yolo。onnx runtime是端测AI部署的重要方法。另一种是tensorflow lite。本文使用python的onnx runtime,跑一下yolo26n-cls这个模型1 安装onnx runtimepip install onnxpip install onnxruntim
using netron dump model
2026-7-5
#!/bin/python3import netronnetron.start("yolo26n-cls.onnx")
Copyright © linuxdev.cc 2017-2024. Some Rights Reserved.