Kyosuke

Kyosuke

74. Visualize Your ONNX model using Netron

Just simply, go to the link and select the onnx model you want to visualize. When converting your model, for example, TENSORFLOW1 ⇒ tensorRT engine You may want to check your input/output dimensions in case something unexpected is happening when…

73. KEEP GOING by Austin Kleon

My top3 key takeaways from the book KEEP GOING by Austin Kleon What next? The truly prolific artists I know always have that question, answered, because they have figured out a daily practice Leave things better than you found them…

72. Challenges of Edge AI

4 Challenges of Edge AI Vulnerable Security Feature Due to scattered locations, more security is required. Limited Machine-Learning Power Edge device with low computing power (compared with the cloud) leads to under-delivery considering performance. Model Sync Delay when updating the…

71. The Drivetrain Approach

To make sure the model you are creating is actually practical, there is method called the Drivetrain Approach introduced by Jeremy Howard. The steps are the following: Defined Approach- What outcome am I trying to achieve? Levers – What inputs…

70. The Psychology of Money

I finished reading The Psychology of Money, so I like to share my top 3 messages from this book. Financial success is not a hard science, It’s a soft skill, where how you behave is more important than what you know…

69. Maximum Likelihood

Maximum Likelihood, as the naming goes, is maximizing the likelihood of your prediction. Let’s say you have an input x and you want to predict y. In this scenario, you want to maximize the probability of Y given x and the bias…

68. I’ve Created a Simple DMP

I’ve created a simple data management platform using Nextjs and Django.I’m hoping I can get some kind of feedback to check whether I’m creating would be ACTUALLY useful.

67. Partition Function

Unnormalized probability distributions are guaranteed to be nonnegative, but not guaranteed to sum or integrate to 1.We need to consider a partition function to obtain a valid probability distribution.But how do you calculate that..? Since it is most often intractable,…

66. Gibbs Sampling

Gibbs Sampling is used when the dimensions of the distribution you are trying to sample from are more than 2, AND when it is difficult to sample from that joint distribution. For example, we want to sample from a joint…

65. Markov Chains

The central limit theorem states that the distribution of independent samples approximates a normal distribution as the number of those samples increases. On the other hand, the Markov Chain states that even dependent samples will converge to a certain state…