yusisc
码龄8年
关注
提问 私信
  • 博客:170,550
    170,550
    总访问量
  • 64
    原创
  • 1,633,439
    排名
  • 22
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:四川省
  • 加入CSDN时间: 2016-06-07
博客简介:

yusisc的博客

博客描述:
hello
查看详细资料
个人成就
  • 获得28次点赞
  • 内容获得20次评论
  • 获得72次收藏
创作历程
  • 1篇
    2022年
  • 1篇
    2021年
  • 4篇
    2020年
  • 4篇
    2019年
  • 30篇
    2018年
  • 75篇
    2017年
成就勋章
TA的专栏
  • python
    22篇
  • ai
    15篇
  • cs
    17篇
  • linux
    12篇
  • html
    3篇
  • math
    4篇
  • tool
    16篇
  • tensorflow
    16篇
  • list
    3篇
  • story
    1篇
  • C++
    3篇
创作活动更多

HarmonyOS开发者社区有奖征文来啦!

用文字记录下您与HarmonyOS的故事。参与活动,还有机会赢奖,快来加入我们吧!

0人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

trivial

start a virtualbox machine from cmdcd /d "D:\Program Files\Oracle\VirtualBox"start VirtualBoxVM.exe -startvm openwrt_04exitset a static ip from cmd@echo offclscolor 0AEcho **************************************************************************
原创
发布博客 2022.01.28 ·
3741 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

conemu activates conda env while open new terminal

cmd.exe /k ""%ConEmuBaseDir%\CmdInit.cmd"" & conda activate tfgpu25
原创
发布博客 2021.08.11 ·
202 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

windows call command one by one

windows batch file call command for 200 times.call: Calls one batch program from another without stopping the parent batch program. The call command accepts labels as the target of the call.REM call command for 200 timesFOR /L %%A IN (1,1,200) DO ( ECH
原创
发布博客 2020.08.28 ·
321 阅读 ·
0 点赞 ·
1 评论 ·
0 收藏

jupyter notebook works in vscode

I found that vscode is able to open jupyter notebooks directly, which i had been wishing for, early this year.This feature makes it’s easy to open a jupyter notebook as open a terminal, start jupyter server and work in browser.jupyter notebook runing in
原创
发布博客 2020.08.24 ·
188 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

simple cpp pool to limit the amount of thread running currently

simple cpp pool to limit the amount of thread running currently to make the computer more responsive.short storywrapping the target function with lambda function.condition variable to block the wrapping function, limiting running thread amount.long s
原创
发布博客 2020.06.26 ·
191 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

cpp work with utf-8

I’m mainly working with cpp, recently. Sometimes, I have some Chinese characters in the input/output stream, the the encoding issue became annoy.the method to make your utf-8 coded program work in GBK scenario.add the following line to your code.#includ
原创
发布博客 2020.06.12 ·
287 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

smooth a curve in images

This is from a post in stackoverflow.com . I make a copy here so that it’s easy to access.#!/usr/bin/env python3# -*- coding: utf-8 -*-# @Time : 2019-03-09 01_17_59 Sat# @Author : yusisc (yusi...
转载
发布博客 2019.03.09 ·
390 阅读 ·
1 点赞 ·
0 评论 ·
0 收藏

how operating system locates the dll for an applicaton

when it’s implicit linking an dll (dynamic-link library) , the operating system will use the following algorithm for locating a DLL.The directory where the executable module for the current process...
原创
发布博客 2019.01.10 ·
187 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

why cross entropy loss works

cross entropy is measurement of probability distributions p and q over the same underlying random variable.H(p,q)=−∑xi∈Xp(xi)logq(xi)H(p, q) = -\sum_{x_i \in X} p(x_i)log^{q(x_i)}H(p,q)=−xi​∈X∑​p(xi​...
原创
发布博客 2019.01.06 ·
225 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

How to make TensorFlow employ multiple GPUs

The content of this essay may not be true. It’s just a short note. As far as I know, recent versions of TensorFlow do not automatically distribute work load to multiply GPUs, even the GPUs are visibl...
原创
发布博客 2019.01.02 ·
250 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Access Windows Subsystem for Linux (WSL) by ssh

modified sshd_config# $OpenBSD: sshd_config,v 1.101 2017/03/14 07:19:07 djm Exp $# This is the sshd server system-wide configuration file. See# sshd_config(5) for more information.# This ssh...
原创
发布博客 2018.09.01 ·
561 阅读 ·
1 点赞 ·
0 评论 ·
1 收藏

如何让奇异值分解(SVD)变得不“奇异”?

如何让奇异值分解(SVD)变得不“奇异”? 红色石头 发布于 2018-08-29 分类:机器学习 阅读(144) 评论(0) 如何让奇异值分解(SVD)变得不“奇异”?-红色石头的个人博客 http://redstonewill.com/1529/ 在之前的一篇文章:通俗解释协方差与相关系数,红色石头为大家通俗化地讲解了协方差是如何定义的,以及如何直观理...
转载
发布博客 2018.08.30 ·
3147 阅读 ·
2 点赞 ·
5 评论 ·
11 收藏

Having trouble to eject portable device from windows?

When I trying to eject my mobile hard disk from windows, It often comes that---------------------------Problem Ejecting USB Attached SCSI (UAS) Mass Storage Device---------------------------This ...
原创
发布博客 2018.08.22 ·
398 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

how to disable github hotkeys/keyboard shortcuts

Tampermonkey, The chrome app, is able to achieve this. The script is as following.// ==UserScript==// @name Disable keyboard shortcuts at github// @description Stop websites from high...
原创
发布博客 2018.08.21 ·
474 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

reinitialize parameters in keras

# Reset/Reinitialize model weights/parameters · Issue #341 · keras-team/keras# https://github.com/keras-team/keras/issues/341session = K.get_session()for layer in model.layers: for v in layer...
转载
发布博客 2018.08.21 ·
358 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

fit a curve

scipy.interpolate.splprepimport numpy as npfrom scipy import interpolatefrom matplotlib import pyplot as pltx = np.array([23, 24, 24, 25, 25])y = np.array([13, 12, 13, 12, 13])# append the ...
原创
发布博客 2018.08.20 ·
565 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

[转] 优秀的算法工程师都是不用深度学习的

from:优秀的算法工程师都是不用深度学习的 - CSDN博客https://blog.csdn.net/B9Q8e64lO6mm/article/details/79019199 作者:王超我也来一发《优秀的算法工程师都是不用深度学习的》向神文致敬《优...
转载
发布博客 2018.08.14 ·
1311 阅读 ·
0 点赞 ·
0 评论 ·
3 收藏

AI 算法工程师 必备技能 知识图谱

from: AI 算法工程师 必备技能 知识图谱 - CSDN博客 https://blog.csdn.net/zpalyq110/article/details/77979313 不知不觉已经在AI领域混了4个多月了,感觉需要学的太多太多了,此博客用以记录成长为 AI 算法工程师的必备技能,...
转载
发布博客 2018.08.14 ·
979 阅读 ·
1 点赞 ·
0 评论 ·
2 收藏

机器学习领域的两个名词 ~~BP神经网络~~ & ~~sotfmax loss~~

BP神经网络我听人说过BP神经网络 、一般的BP神经网络,我还听过前馈神经网络。我感觉他们说的是同一个东西,也就是那种多层全连接的神经网络。不过,不同的名字里面,“向前”是他,“向后”也是他。这个让人有点困惑。我去搜索了一下 back propagation neural network。从搜索的结果看来,在英文世界里,BP神经网络 这么一个东西,至少不是一个广泛使用的概念。 我的观点是:B...
原创
发布博客 2018.08.09 ·
304 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

sklearn库的学习

origin: sklearn库的学习 - CSDN博客 https://blog.csdn.net/u014248127/article/details/78885180 sklearn库的学习 <div class="article-info-box"> <div class=&
转载
发布博客 2018.08.06 ·
316 阅读 ·
0 点赞 ·
0 评论 ·
2 收藏
加载更多