摘要:
一、应用层面。人工智能主要分三层,最底层是基础架构,例如芯片、云计算、TensorFlow之类的框架,中层是通用的人工智能技术,例如图像识别,语音识别,NLP技术,最上层是行业应用。贝业斯做的事情是利用中层的通用技术加以改良,最后拿产生的技术成果服务中医健康行业。具体来说,利用贝业斯积累的中医行业数 阅读全文
摘要:
# coding:utf-8 """ Name : LeetCode454.py Author : qlb Contect : 17801044486@163.com Time : 2021/2/5 17:21 Desc: 四数相加 """ import collections from typin 阅读全文
摘要:
# coding:utf-8 """ Name : LeetCode1.py Author : qlb Contect : 17801044486@163.com Time : 2021/2/5 15:26 Desc: 两数之和 """ from typing import List #解题思路1 阅读全文
摘要:
# coding:utf-8 """ Name : LeetCode202.py Author : qlb Contect : 17801044486@163.com Time : 2021/2/5 10:49 Desc: 快乐数 """ #「当我们遇到了要快速判断一个元素是否出现集合里的时候,就要 阅读全文
摘要:
# coding:utf-8 """ Name : LeetCode349.py Author : qlb Contect : 17801044486@163.com Time : 2021/2/5 10:19 Desc: 两个数组的交集 """ from typing import List #解 阅读全文
摘要:
# coding:utf-8 """ Name : NO242.py Author : qlb Contect : 17801044486@163.com Time : 2021/2/5 8:08 Desc: 有效字母异位词 """ #解题思路 #有效字母异位词的条件有以下几个 #1 两个字符串长度 阅读全文