• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
鱼市口
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 2 3 4 下一页
2023年5月10日
date or other data normalization general solution in pandas
摘要: import pandas as pd import numpy as np from sklearn.preprocessing import MinMaxScaler import time # of course you can use basic pandas api doing this 阅读全文
posted @ 2023-05-10 23:16 鱼市口 阅读(21) 评论(0) 推荐(0)
2023年4月20日
LGBM一些参数杂项,datrics.ai
摘要: Optimize This checkbox enables the Bayesian hyperparameter optimization, which tweaks the learning rate, as well as the number of iterations and leave 阅读全文
posted @ 2023-04-20 13:57 鱼市口 阅读(41) 评论(0) 推荐(0)
2023年4月8日
csv read note
摘要: Error "(unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape" [duplicate] Solutions below 1: Just put  阅读全文
posted @ 2023-04-08 20:36 鱼市口 阅读(31) 评论(0) 推荐(0)
sklearn miscellenous
摘要: StandardScaler in preprocessing Standardize features by removing the mean and scaling to unit variance. scaler = StandardScaler() can have .tranform w 阅读全文
posted @ 2023-04-08 14:14 鱼市口 阅读(56) 评论(0) 推荐(0)
2023年2月23日
std::ref
摘要: The std::thread constructor copies the supplied values, without converting to the expected argument type (which is reference type in this case, seeupd 阅读全文
posted @ 2023-02-23 15:14 鱼市口 阅读(52) 评论(0) 推荐(0)
2023年1月23日
c++项目
摘要: 如题, 想搞1-2个c++项目把目前除了进程、线程管理的所有所学都用起来。 在自己设想中。 阅读全文
posted @ 2023-01-23 00:31 鱼市口 阅读(51) 评论(0) 推荐(0)
2023年1月18日
类内函数的override问题-方法
摘要: Question: have a base class with a virtual function: class Base { public: virtual void Function(); }; void Base::Function() { cout << "default version 阅读全文
posted @ 2023-01-18 23:42 鱼市口 阅读(19) 评论(0) 推荐(0)
2023年1月2日
Leetcode457
摘要: A very absurd description for this problem, but people can get the idea by looking at the examples.... bool circularArrayLoop(vector<int>& nums) { int 阅读全文
posted @ 2023-01-02 23:52 鱼市口 阅读(35) 评论(0) 推荐(0)
132pattern-Leetcode456
摘要: QUESTION: To search for a subsequence (s1,s2,s3) such that s1 < s3 < s2. INTUITION: Suppose we want to find a 123 sequence with s1 < s2 < s3, we just 阅读全文
posted @ 2023-01-02 23:40 鱼市口 阅读(22) 评论(0) 推荐(0)
2022年12月30日
Leetcode209
摘要: 209. Minimum Size Subarray Sum i , s , l = 0, 0, 0 for j in range(len(nums)): s += nums[j] while (s >= target): l = j-i+1 if l == 0 else min(j-i+1, l) 阅读全文
posted @ 2022-12-30 11:54 鱼市口 阅读(25) 评论(0) 推荐(0)
上一页 1 2 3 4 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3