
python
謝堆堆DDD
这个作者很懒,什么都没留下…
展开
-
特征工程-数据标准化的两种方式
特征工程-数据标准化的两种方式原创 2023-03-13 19:47:40 · 376 阅读 · 0 评论 -
UnicodeDecodeError: ‘utf-8‘ codec can‘t decode byte 0x80 in position 109130: invalid start byte
成功解决‘UnicodeDecodeError: 'utf-8' codec can't decode byte 0x80 in position 109130: invalid start byte’原创 2022-11-11 14:14:57 · 1754 阅读 · 1 评论 -
LSTM自定义实现pytorch
想要跑LSTM具体的网络结构,在网上找了很久,都是直接调用nn.LSTM模块。从调用LSTM模块到自定义LSTM,不知道为什么训练速度慢了很多。如果代码有什么问题欢迎指出。原创 2022-09-19 19:54:02 · 2535 阅读 · 2 评论 -
Unable to get repr for <class ‘torch.Tensor‘>
解决Unable to get repr for原创 2022-09-15 10:43:08 · 510 阅读 · 0 评论 -
解决 AttributeError: module ‘tensorboard.summary._tf.summary‘ has no attribute ‘merge‘
AttributeError: module 'tensorboard.summary._tf.summary' has no attribute 'merge'原创 2022-09-10 11:06:02 · 2455 阅读 · 0 评论 -
解决:pandas.errors.EmptyDataError: No columns to parse from file
报错:pandas.errors.EmptyDataError: No columns to parse from file在对多个csv文件处理的时候报错。看了很多人的,最后解决办法如下:修改前:data_raw = pd.read_csv(path + '\\' + file_name, encoding="ISO-8859-15")修改如下: try: data_raw = pd.read_csv(path + '\\' + file_name, encoding原创 2021-12-09 19:40:38 · 13546 阅读 · 0 评论