Category Archives: 机器学习

机器学习 / 数据挖掘

在GCP(谷歌云)上部署 ChatGLM-6B

1 机器准备

GCP,GPU至少选Tesla T4、操作系统Ubuntu 20.04,硬盘50GB

2 安装cuda驱动

参考GCP的官方文档:https://cloud.google.com/compute/docs/gpus/install-drivers-gpu

可以使用自动安装脚本(注意提前安装python 3)

下载
curl https://raw.githubusercontent.com/GoogleCloudPlatform/compute-gp[......]

继续阅读

Tensorflow做深度学习的常见问题

1 有没有开箱即用的在线开发环境

推荐 https://colab.research.google.com/

2 前沿的peper研究和代码

https://paperswithcode.com/

3 CNN可视化解释

https://poloclub.github.io/cnn-explainer/#article-relu

4 分类问题如何选择架构

如下表所示,注意区分二分类和多分类:

3 代码片段学习推荐

https://git[......]

继续阅读