lesson2-cnn-fastai
Posted rosyYY
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lesson2-cnn-fastai相关的知识,希望对你有一定的参考价值。
https://www.bilibili.com/video/av10156946/index_4.html#page=4
from IPython.display import FileLink
FileLink(‘文件位置‘)
--- 建立连接,将文件从服务器下载到电脑
import numpy as np
x=np.array([1,2,3,5,6,7,8,9])
np.clip(x,3,8)
Out[88]:
array([3, 3, 3, 5, 6, 7, 8, 8])
以上是关于lesson2-cnn-fastai的主要内容,如果未能解决你的问题,请参考以下文章