python
elkluh
简单,容易,一看就会。
展开
-
deep learning实验笔记
enumerate()支持迭代的对象枚举对象生成包含一个计数的对(从start开始,它默认为0)和一个由iterable参数生成的值。Enumerate对于获取索引列表很有用:unique()获取数组中不重复的元素。map()df[5] = df[4].map(mapping)把df[4]中的值当作键key,得到一列值value存在df[5]中。torch.rand()返回服从均匀分布的初始化后的tenosr,外形是其参数sizeU = torch.r原创 2022-04-16 07:32:18 · 193 阅读 · 0 评论 -
高斯分布的性质(含代码)
多元高斯分布:一元高斯分布:(将多元高斯分布中的D取值1)其中代表的是平均值,是方差的平方,也可以用来表示,是一个对称正定矩阵。--------------------------------------------------------------------------------------------------------------------------------一.不同的平均值对二元高斯分布的影响:平均值不同时,高斯分布的中心不一样。二. 不同...原创 2022-01-17 06:03:22 · 3218 阅读 · 0 评论 -
Python的一些函数用法
np.square(X)把矩阵中每个元素都平方,返回这个矩阵np.linalg.eig()@ 是矩阵乘法的计算 ——————————————————————————————————dot()的使用dot()返回的是两个数组的点积(dot product)1.如果处理的是一维数组,则得到的是两数组的內积In : d = np.arange(0,9)Out: array([0, 1, 2, 3, 4, 5, 6, 7, 8])In :...原创 2021-11-15 00:45:37 · 1689 阅读 · 0 评论 -
[python]文件和异常
import json#处理ZeroDivisionError异常try: print(5/0)except ZeroDivisionError: print("You can't divide by zero!")#Example 1print("Give me two numbers, and I'll divide them.")print("Enter 'q' to quit.")while True: first_number = input("\nIn.原创 2021-05-19 15:20:08 · 91 阅读 · 0 评论 -
[python]文件读写操作
#读取文件with open('pi_digits.txt') as file_object: lines1 = file_object.read() # 读取所有 lines = file_object.readlines() #逐行读取print(f"lines1:{lines1}")pi_string = ''for line in lines: pi_string += line.strip()print(f"{pi_string[:52]}")pri.原创 2021-05-19 10:07:59 · 115 阅读 · 0 评论 -
[python] 类
class Dog: def __init__(self, name, age): self.name = name self.age = age def sit(self): print(f"{self.name} is now sitting.") def roll_over(self): print(f"{self.name} rolled over!")my_dog = Dog('willie', 6.原创 2021-05-18 16:12:16 · 98 阅读 · 0 评论 -
[python]函数相关
#example 1def great_user(name): print(f"Hello, {name}")great_user("wang")def favorite_book(title): print(f"My favorite bool is {title}")favorite_book("Alice in Wonderland")#example 2def describe_pet(pet_type , pet_name): print(f"I ha.原创 2021-05-17 15:20:30 · 143 阅读 · 0 评论 -
[python]while 语句
#example1unconfirmed_users = ['alice', 'brian', 'candace']confirmed_users = []while unconfirmed_users: current_user = unconfirmed_users.pop() print(f"Verifying User:{current_user.title()}") confirmed_users.append(current_user)print("\nT.原创 2021-05-17 10:32:13 · 128 阅读 · 0 评论 -
[python]字典
#初始化字典alien_0 = {'color':'green','points':5}#访问字典中的值print(alien_0['color'])print(alien_0['points'])#添加键值对alien_0['x_position'] = 0alien_0['y_position'] = 25print(alien_0)#定义一个空字典alien_0 = {}alien_0['color'] = 'green'alien_0['points'] = 5print.原创 2021-05-13 17:49:45 · 88 阅读 · 0 评论 -
[python]if语句
cars = ['audi','bmw','subaru','toyota']for car in cars: if car == 'bmw': print(car.upper()) else: print(car.title())#检查多个条件age_0 = 22age_1 = 18#andprint(age_0 >=21 and age_1>=21)#orprint(age_0 >=21 or age_1>=21)#检查特定的值是不是在已知列.原创 2021-05-13 16:09:29 · 110 阅读 · 0 评论 -
[python] 元组tuple
#python把不能修改的值称为不可变的,不可变的列表称为元组#定义元组dimensions = (200, 50)print(dimensions[0])#遍历元组中的所有数for dimension in dimensions: print(dimension)#虽然不能改变元组的值,但是可以重新赋值给元组变量dimensions = ['cars','jewelry']print(dimensions)...原创 2021-05-13 14:46:19 · 94 阅读 · 0 评论 -
python:和list有关的操作
first_name = "ada"last_name = "lovelace"full_name = f"{first_name} {last_name}"print(full_name)print(f"Hello, {full_name.title()}")message = f"Hello, {full_name.title()}"print(message)print("\tPython")full_name2 = "{} {}".format(first_name.title.原创 2021-05-13 14:30:04 · 148 阅读 · 0 评论 -
Python中列表(list)和元组(tuple)的用法
列表list列表的定义:fruits=['apple','pear','peach'] 空列表 fruits=[]列表的引用:fruits[0],fruits[1],fruits[2]求列表的长度:len(fruits) 取列表的最后一个元素:fruits[len-1] 或者 fruits[-1]追加元素到列表末尾:fruits.append('wa...原创 2020-02-23 17:21:25 · 478 阅读 · 0 评论