Open in app

Sign In

Write

Sign In

ifeelfree
ifeelfree

24 Followers

Home

About

Jul 8, 2022

My Blender Journey Part 1: Background Knowledge

Cartesian system is right-handed:

Blender

3 min read

My Blender Journey Part 1: Background Knowledge
My Blender Journey Part 1: Background Knowledge
Blender

3 min read


Jul 1, 2022

Algorithm Related to List: Part 1

∘ Introduction ∘ Operations ∘ Introduction In this article algorithms related to list data structure will be summarized. List is a very common data structure, and people often compare list data structure with array data structure. The major difference between these two data structures lies in the fact that elements in…

Leecode

3 min read

Algorithm Related to List: Part 1
Algorithm Related to List: Part 1
Leecode

3 min read


Jun 29, 2022

Algorithms Related to Array: Part 2

This article is a continuation of a series of articles related to algorithms based on ARRAY data structure. Algorithms Related to Array: Part 1 In this article, I will summarize all the algorithms that are related to array data structure.majianglin2003.medium.com Minimum Size Subarray Suppose we are given a numerical array and a target value, then what is the minimum size of a continuous subarray whose sum is larger than the given target…

Algorithms

3 min read

Algorithms Related to Array: Part 2
Algorithms Related to Array: Part 2
Algorithms

3 min read


Jun 27, 2022

Algorithms Related to Array: Part 1

In this article, I will summarize all the algorithms that are related to array data structure. What is ARRAY? First of all, let’s have a definition of ARRAY data structure. ARRAY refers to a collection of data that is kept in a continuous memory space, and as a result you…

Algorithms

3 min read

Algorithms Related to Array: Part 1
Algorithms Related to Array: Part 1
Algorithms

3 min read


Jun 5, 2022

How to install Ubuntu 20.04 along with Windows 10 on HP Notebook

I have a HP Notebook (EliteBook G3) with Windows 10 Pro. Recently I decide to install Ubuntu 20.04 along with it. In this article, I will keep an record of the procedure with the hope that it will be useful for you as well. Step 1: turn off bitlocker encryption…

Ubuntu

2 min read

How to install Ubuntu 20.04 along with Windows 10 on HP Notebook
How to install Ubuntu 20.04 along with Windows 10 on HP Notebook
Ubuntu

2 min read


May 17, 2021

PyTorch Gradients

Part 1: calculate gradients There are two ways of getting gradients: Backward x=torch.tensor([3.0], requires_grad=True) y = torch.pow(x, 2) # y=x**2 y.backward(retain_graph=True) print(x.grad) 6 Grad x=torch.tensor([3.0], requires_grad=True) y = torch.pow(x, 2) grad_1 = torch.autograd.grad(y, x, create_graph=True) print(grad_1[0].item()) Part 2: Note (1) gradient will not be cleared unless explicitly cleared

Pytorch

3 min read

Pytorch

3 min read


May 10, 2021

My Note on Metaflow

Part 1: What is Metaflow? Data is accessed from a data warehouse, which can be a folder of files, a database, or a multi-petabyte data lake. Part 2: Notes Generate process map PNG file python helloworld.py output-dot | dot -Tpng -o /tmp/graph.png This command will put the processing chain in a PNG file

1 min read

My Note on Metaflow
My Note on Metaflow

1 min read


May 6, 2021

Model Evaluation Metric

Part 1: Preliminary True Positives (TP, blue distribution) are the people that truly have the COVID-19 virus. True Negatives (TN, red distribution) are the people that truly DO NOT have the COVID-19 virus. False Positives (FP) are the people that are truly NOT sick but based on the test, they were falsely (False)…

3 min read

Model Evaluation Metric
Model Evaluation Metric

3 min read


May 6, 2021

My Understanding of Data Separation and Model Evaluation

Part 1: Hold-out Method How to separate data? Now we know that our model has errors and there could be several sources of errors. But, how do we identify which one? We have millions of records in the training set, and at least several thousands in the dev set. …

3 min read

My Understanding of Data Separation and Model Evaluation
My Understanding of Data Separation and Model Evaluation

3 min read


May 5, 2021

PyTorch Dataset

Table of Contents · Part 1: Dataset from torch.utils.data · Part 2: Dataset from IterableDataset · Part 3: notes · Part 4: reference Part 1: Dataset from torch.utils.data Before PyTorch 1.2 the only available dataset class was the original “map-style” dataset. This simply requires the user to inherit from the torch.utils.data.Dataset …

Pytorch

3 min read

PyTorch Dataset
PyTorch Dataset
Pytorch

3 min read

ifeelfree

ifeelfree

24 Followers
Following
  • Eyal Trabelsi

    Eyal Trabelsi

  • Neeraj Krishna

    Neeraj Krishna

  • SNU AI

    SNU AI

  • Kirill Dubovikov

    Kirill Dubovikov

  • Sunner Li

    Sunner Li

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech