mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-31 00:34:05 -06:00
Crazy timing revert change
This commit is contained in:
parent
12641095c1
commit
9c07020288
@ -4,8 +4,11 @@ from git import Repo
|
|||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
||||||
content_path = os.path.join(os.path.dirname(__file__))
|
content_path = r"C:\Users\83549\Documents\github_proj\content"
|
||||||
prefix_path = os.path.join(content_path, "content")
|
prefix_path = os.path.join(os.path.dirname(__file__), 'content')
|
||||||
|
|
||||||
|
file_path_list = []
|
||||||
|
date_list = []
|
||||||
|
|
||||||
for root, dirs, files in os.walk(content_path):
|
for root, dirs, files in os.walk(content_path):
|
||||||
for file in files:
|
for file in files:
|
||||||
@ -15,23 +18,57 @@ if __name__ == '__main__':
|
|||||||
|
|
||||||
# ignore bug and continue running
|
# ignore bug and continue running
|
||||||
|
|
||||||
try:
|
|
||||||
|
|
||||||
if file.endswith(".md"):
|
if file.endswith(".md"):
|
||||||
|
file_path = os.path.join(root, file)
|
||||||
|
repo = Repo(content_path)
|
||||||
|
file_path = os.path.relpath(file_path, repo.working_dir)
|
||||||
|
commit = repo.iter_commits(paths=file_path, max_count=1).__next__()
|
||||||
|
# print(f"{file_path} - {str(commit.committed_datetime).split(' ')[0]}")
|
||||||
|
|
||||||
|
file_path = file_path.replace('文学', 'literature')
|
||||||
|
file_path = file_path.replace('句子', 'sentence')
|
||||||
|
|
||||||
|
# check if path exists, no matter capital or not
|
||||||
|
|
||||||
|
file_path_list.append(os.path.join(prefix_path, file_path).lower())
|
||||||
|
date_list.append(str(commit.committed_datetime).split(' ')[0])
|
||||||
|
|
||||||
|
# print(file_path_list[-1])
|
||||||
|
|
||||||
|
|
||||||
|
for root, dirs, files in os.walk(prefix_path):
|
||||||
|
for file in files:
|
||||||
|
|
||||||
|
if '.' in root:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if file.endswith(".md"):
|
||||||
|
|
||||||
|
check_path = os.path.join(root, file)
|
||||||
|
check_path = check_path.lower()
|
||||||
|
|
||||||
|
if check_path in file_path_list:
|
||||||
|
index = file_path_list.index(check_path)
|
||||||
file_path = os.path.join(root, file)
|
file_path = os.path.join(root, file)
|
||||||
repo = Repo(content_path)
|
date = date_list[index]
|
||||||
file_path = os.path.relpath(file_path, repo.working_dir)
|
|
||||||
commit = repo.iter_commits(paths=file_path, max_count=1).__next__()
|
|
||||||
# print(f"{file_path} - {str(commit.committed_datetime).split(' ')[0]}")
|
|
||||||
|
|
||||||
# check if path exists, no matter capital or not
|
# open file and write date into it
|
||||||
print(os.path.join(prefix_path, file_path))
|
f = open(file_path, 'r', encoding="utf-8")
|
||||||
|
|
||||||
|
lines = f.readlines()
|
||||||
|
for i in range(0, len(lines)):
|
||||||
|
if lines[i].startswith("date:") == True:
|
||||||
|
lines[i] = f"date: {date}\n"
|
||||||
|
|
||||||
|
|
||||||
|
f.close()
|
||||||
|
|
||||||
except:
|
f = open(file_path, 'w', encoding="utf-8")
|
||||||
# output error message
|
f.writelines(lines)
|
||||||
print(f"Error: {file_path}")
|
f.close()
|
||||||
pass
|
|
||||||
continue
|
print(f"{file_path} - {date}")
|
||||||
|
|
||||||
|
|
||||||
@ -3,7 +3,7 @@ title: Home
|
|||||||
tags:
|
tags:
|
||||||
- catalog
|
- catalog
|
||||||
- MOC
|
- MOC
|
||||||
date: 2023-09-13
|
date: 2023-09-19
|
||||||
---
|
---
|
||||||
🕵️♂️ This is Jude Wang's vault about his notebook, his knowledge, his second brain.
|
🕵️♂️ This is Jude Wang's vault about his notebook, his knowledge, his second brain.
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
title: Atlas - Map of Maps
|
title: Atlas - Map of Maps
|
||||||
tags:
|
tags:
|
||||||
- MOC
|
- MOC
|
||||||
date: 2023-03-16
|
date: 2024-02-28
|
||||||
---
|
---
|
||||||
|
|
||||||
🚧 There are notebooks about his research career:
|
🚧 There are notebooks about his research career:
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Code Framework Learn
|
|||||||
tags:
|
tags:
|
||||||
- web
|
- web
|
||||||
- code_tool
|
- code_tool
|
||||||
date: 2023-06-06
|
date: 2023-12-03
|
||||||
---
|
---
|
||||||
|
|
||||||
# Web Framework
|
# Web Framework
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
---
|
---
|
||||||
title: Flask - MOC
|
title: Flask - MOC
|
||||||
date: 2023-06-06
|
date: 2023-12-03
|
||||||
---
|
---
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- basic
|
- basic
|
||||||
- coding-language
|
- coding-language
|
||||||
- MOC
|
- MOC
|
||||||
date: 2023-06-06
|
date: 2023-09-04
|
||||||
---
|
---
|
||||||
|
|
||||||
# Python
|
# Python
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- python
|
- python
|
||||||
- coding-language
|
- coding-language
|
||||||
- basic
|
- basic
|
||||||
date: 2023-06-06
|
date: 2023-09-04
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- math
|
- math
|
||||||
- MOC
|
- MOC
|
||||||
- geometry
|
- geometry
|
||||||
date: 2024-02-28
|
date: 2024-02-27
|
||||||
---
|
---
|
||||||
|
|
||||||
# 3D Geometry Algorithm
|
# 3D Geometry Algorithm
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Delaunay Triangulation
|
|||||||
tags:
|
tags:
|
||||||
- math
|
- math
|
||||||
- geometry
|
- geometry
|
||||||
date: 2024-02-28
|
date: 2023-09-04
|
||||||
---
|
---
|
||||||
# What is Delaunay Triangulation?
|
# What is Delaunay Triangulation?
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- MOC
|
- MOC
|
||||||
- algorithm
|
- algorithm
|
||||||
- data-structure
|
- data-structure
|
||||||
date: 2024-02-28
|
date: 2023-09-15
|
||||||
---
|
---
|
||||||
|
|
||||||
# Tree-like Structure
|
# Tree-like Structure
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- data-structure
|
- data-structure
|
||||||
- basic
|
- basic
|
||||||
- algorithm
|
- algorithm
|
||||||
date: 2024-02-28
|
date: 2023-09-04
|
||||||
---
|
---
|
||||||
|
|
||||||
# Basic Concept
|
# Basic Concept
|
||||||
|
|||||||
@ -3,6 +3,6 @@ title: Minimum Spanning Tree
|
|||||||
tags:
|
tags:
|
||||||
- data-structure
|
- data-structure
|
||||||
- graph
|
- graph
|
||||||
date: 2024-02-28
|
date: 2023-09-15
|
||||||
---
|
---
|
||||||
Not now...
|
Not now...
|
||||||
@ -3,7 +3,7 @@ title: Spanning Tree
|
|||||||
tags:
|
tags:
|
||||||
- graph
|
- graph
|
||||||
- data-structure
|
- data-structure
|
||||||
date: 2024-02-28
|
date: 2023-09-19
|
||||||
---
|
---
|
||||||
|
|
||||||
# What is Spanning Tree?
|
# What is Spanning Tree?
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Topological Sorting
|
|||||||
tags:
|
tags:
|
||||||
- data-structure
|
- data-structure
|
||||||
- graph
|
- graph
|
||||||
date: 2024-02-28
|
date: 2023-09-14
|
||||||
---
|
---
|
||||||
# What is Topological Sorting
|
# What is Topological Sorting
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- algorithm
|
- algorithm
|
||||||
- string
|
- string
|
||||||
- string-search
|
- string-search
|
||||||
date: 2024-02-28
|
date: 2024-01-25
|
||||||
---
|
---
|
||||||
|
|
||||||
# Abstract
|
# Abstract
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- data-structure
|
- data-structure
|
||||||
- basic
|
- basic
|
||||||
- algorithm
|
- algorithm
|
||||||
date: 2024-02-28
|
date: 2023-09-04
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Segment Tree
|
|||||||
tags:
|
tags:
|
||||||
- data-structure
|
- data-structure
|
||||||
- tree
|
- tree
|
||||||
date: 2024-02-28
|
date: 2023-09-13
|
||||||
---
|
---
|
||||||
# Overview
|
# Overview
|
||||||
|
|
||||||
|
|||||||
@ -3,6 +3,6 @@ title: Two Pointers
|
|||||||
tags:
|
tags:
|
||||||
- algorithm
|
- algorithm
|
||||||
- pointer
|
- pointer
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Model Evaluation - MOC
|
|||||||
tags:
|
tags:
|
||||||
- deep-learning
|
- deep-learning
|
||||||
- evaluation
|
- evaluation
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
* [Model Evaluation in Time Series Forecasting](computer_sci/deep_learning_and_machine_learning/Evaluation/time_series_forecasting.md)
|
* [Model Evaluation in Time Series Forecasting](computer_sci/deep_learning_and_machine_learning/Evaluation/time_series_forecasting.md)
|
||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- deep-learning
|
- deep-learning
|
||||||
- evaluation
|
- evaluation
|
||||||
- time-series-dealing
|
- time-series-dealing
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- deep-learning
|
- deep-learning
|
||||||
- model
|
- model
|
||||||
- time-series-dealing
|
- time-series-dealing
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
DeepAR, an autoregressive recurrent network developed by Amazon, is the first model that could natively work on multiple time-series. It's a milestone in time-series community.
|
DeepAR, an autoregressive recurrent network developed by Amazon, is the first model that could natively work on multiple time-series. It's a milestone in time-series community.
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Famous Model MOC
|
|||||||
tags:
|
tags:
|
||||||
- deep-learning
|
- deep-learning
|
||||||
- MOC
|
- MOC
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
# Time-series
|
# Time-series
|
||||||
|
|||||||
@ -4,6 +4,6 @@ tags:
|
|||||||
- deep-learning
|
- deep-learning
|
||||||
- model
|
- model
|
||||||
- time-series-dealing
|
- time-series-dealing
|
||||||
date: 2024-02-28
|
date: 2023-09-04
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- deep-learning
|
- deep-learning
|
||||||
- LLM
|
- LLM
|
||||||
- NLP
|
- NLP
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
# Training
|
# Training
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- LLM
|
- LLM
|
||||||
- deep-learning
|
- deep-learning
|
||||||
- basic
|
- basic
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
# LLM Temperature
|
# LLM Temperature
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- LLM
|
- LLM
|
||||||
- basic
|
- basic
|
||||||
- langchain
|
- langchain
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
# What is LangChain
|
# What is LangChain
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- metircs
|
- metircs
|
||||||
- deep-learning
|
- deep-learning
|
||||||
- benchmark
|
- benchmark
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
# Overview
|
# Overview
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- deep-learning
|
- deep-learning
|
||||||
- RLHF
|
- RLHF
|
||||||
- LLM-training-method
|
- LLM-training-method
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -4,6 +4,6 @@ tags:
|
|||||||
- dataset
|
- dataset
|
||||||
- LLM
|
- LLM
|
||||||
- deep-learning
|
- deep-learning
|
||||||
date: 2024-02-28
|
date: 2023-09-04
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@ -3,6 +3,6 @@ title: How to do use fine tune tech to create your chatbot
|
|||||||
tags:
|
tags:
|
||||||
- deep-learning
|
- deep-learning
|
||||||
- LLM
|
- LLM
|
||||||
date: 2024-02-28
|
date: 2023-09-04
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- LLM
|
- LLM
|
||||||
- fine-tune
|
- fine-tune
|
||||||
- LLaMA
|
- LLaMA
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: LLM training steps
|
|||||||
tags:
|
tags:
|
||||||
- LLM
|
- LLM
|
||||||
- deep-learning
|
- deep-learning
|
||||||
date: 2024-02-28
|
date: 2023-09-04
|
||||||
---
|
---
|
||||||
|
|
||||||
训练大型语言模型(LLM)的方法通常涉及以下步骤:
|
训练大型语言模型(LLM)的方法通常涉及以下步骤:
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- LLM
|
- LLM
|
||||||
- LLM-training-method
|
- LLM-training-method
|
||||||
- deep-learning
|
- deep-learning
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
# Find a dataset
|
# Find a dataset
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- MOC
|
- MOC
|
||||||
- deep-learning
|
- deep-learning
|
||||||
- interpretability
|
- interpretability
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
* [SHAP](computer_sci/deep_learning_and_machine_learning/Model_interpretability/SHAP.md)
|
* [SHAP](computer_sci/deep_learning_and_machine_learning/Model_interpretability/SHAP.md)
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- deep-learning
|
- deep-learning
|
||||||
- interpretability
|
- interpretability
|
||||||
- algorithm
|
- algorithm
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
SHAP is the most popular model-agnostic technique that is used to explain predictions. SHAP stands for **SH**apley **A**dditive ex**P**lanations
|
SHAP is the most popular model-agnostic technique that is used to explain predictions. SHAP stands for **SH**apley **A**dditive ex**P**lanations
|
||||||
|
|||||||
@ -5,6 +5,6 @@ tags:
|
|||||||
- deep-learning
|
- deep-learning
|
||||||
- tokenization
|
- tokenization
|
||||||
- basic
|
- basic
|
||||||
date: 2024-02-28
|
date: 2023-09-04
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- metrics
|
- metrics
|
||||||
- time-series-dealing
|
- time-series-dealing
|
||||||
- evalution
|
- evalution
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- loss-function
|
- loss-function
|
||||||
- deep-learning
|
- deep-learning
|
||||||
- deep-learning-math
|
- deep-learning-math
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
在大多数现实世界的预测问题中,我们的预测所带来的不确定性具有重要价值。相较于仅仅提供点估计,了解预测范围能够显著改善许多商业应用的决策过程。**Quantile loss**就是为例帮助我们了解预测范围的loss function。
|
在大多数现实世界的预测问题中,我们的预测所带来的不确定性具有重要价值。相较于仅仅提供点估计,了解预测范围能够显著改善许多商业应用的决策过程。**Quantile loss**就是为例帮助我们了解预测范围的loss function。
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- machine-learning
|
- machine-learning
|
||||||
- clustering
|
- clustering
|
||||||
- algorithm
|
- algorithm
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
# Step by Step
|
# Step by Step
|
||||||
|
|||||||
@ -3,6 +3,6 @@ title: Gated Recurrent Unit
|
|||||||
tags:
|
tags:
|
||||||
- deep-learning
|
- deep-learning
|
||||||
- time-series-dealing
|
- time-series-dealing
|
||||||
date: 2024-02-28
|
date: 2023-09-07
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- deep-learning
|
- deep-learning
|
||||||
- time-series-dealing
|
- time-series-dealing
|
||||||
- basic
|
- basic
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: XGBoost
|
|||||||
tags:
|
tags:
|
||||||
- deep-learning
|
- deep-learning
|
||||||
- ensemble-learning
|
- ensemble-learning
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: AdaBoost
|
|||||||
tags:
|
tags:
|
||||||
- deep-learning
|
- deep-learning
|
||||||
- ensemble-learning
|
- ensemble-learning
|
||||||
date: 2024-02-28
|
date: 2023-09-07
|
||||||
---
|
---
|
||||||
|
|
||||||
# Video you need to watch first
|
# Video you need to watch first
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
title: Decision Tree
|
title: Decision Tree
|
||||||
tags:
|
tags:
|
||||||
- machine-learning
|
- machine-learning
|
||||||
date: 2024-02-28
|
date: 2023-09-07
|
||||||
---
|
---
|
||||||
|
|
||||||
Only vedio here:
|
Only vedio here:
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Deep Learning MOC
|
|||||||
tags:
|
tags:
|
||||||
- Catalog
|
- Catalog
|
||||||
- MOC
|
- MOC
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
title: Deep Neural Decision Forests
|
title: Deep Neural Decision Forests
|
||||||
tags:
|
tags:
|
||||||
- deep-learning
|
- deep-learning
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
# Background
|
# Background
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
title: Random Forest
|
title: Random Forest
|
||||||
tags:
|
tags:
|
||||||
- machine-learning
|
- machine-learning
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
# Background
|
# Background
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: "Transformer"
|
|||||||
tags:
|
tags:
|
||||||
- deep-learning
|
- deep-learning
|
||||||
- attention
|
- attention
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!info]
|
> [!info]
|
||||||
|
|||||||
@ -3,6 +3,6 @@ title: Machine Learning MOC
|
|||||||
tags:
|
tags:
|
||||||
- MOC
|
- MOC
|
||||||
- machine-learning
|
- machine-learning
|
||||||
date: 2024-02-28
|
date: 2024-01-17
|
||||||
---
|
---
|
||||||
* [SVM](computer_sci/deep_learning_and_machine_learning/machine_learning/SVM.md)
|
* [SVM](computer_sci/deep_learning_and_machine_learning/machine_learning/SVM.md)
|
||||||
@ -2,7 +2,7 @@
|
|||||||
title: Support Vector Machine
|
title: Support Vector Machine
|
||||||
tags:
|
tags:
|
||||||
- machine-learning
|
- machine-learning
|
||||||
date: 2024-02-28
|
date: 2024-02-27
|
||||||
---
|
---
|
||||||
|
|
||||||
# Overview
|
# Overview
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- MOC
|
- MOC
|
||||||
- hardware
|
- hardware
|
||||||
- chip
|
- chip
|
||||||
date: 2024-02-28
|
date: 2023-09-04
|
||||||
---
|
---
|
||||||
|
|
||||||
# Microcontroller unit (MCU)
|
# Microcontroller unit (MCU)
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Independence & Correlation
|
|||||||
tags:
|
tags:
|
||||||
- math
|
- math
|
||||||
- statistics
|
- statistics
|
||||||
date: 2024-02-28
|
date: 2024-02-27
|
||||||
---
|
---
|
||||||
|
|
||||||
# Independent
|
# Independent
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Data science MOC
|
|||||||
tags:
|
tags:
|
||||||
- data
|
- data
|
||||||
- statistics
|
- statistics
|
||||||
date: 2024-02-28
|
date: 2023-12-18
|
||||||
---
|
---
|
||||||
|
|
||||||
# Basic Concept
|
# Basic Concept
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- MOC
|
- MOC
|
||||||
- statistics
|
- statistics
|
||||||
- stochastic-process
|
- stochastic-process
|
||||||
date: 2024-02-28
|
date: 2023-09-19
|
||||||
---
|
---
|
||||||
# Basic Concept
|
# Basic Concept
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- math
|
- math
|
||||||
- stochastic-process
|
- stochastic-process
|
||||||
- signal-processing
|
- signal-processing
|
||||||
date: 2024-02-28
|
date: 2023-09-19
|
||||||
---
|
---
|
||||||
|
|
||||||
# Reference
|
# Reference
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: The economist style graph
|
|||||||
tags:
|
tags:
|
||||||
- data-visual
|
- data-visual
|
||||||
- statistics
|
- statistics
|
||||||
date: 2024-02-28
|
date: 2023-12-18
|
||||||
---
|
---
|
||||||
# Reference
|
# Reference
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Visual Information Theory
|
|||||||
tags:
|
tags:
|
||||||
- data
|
- data
|
||||||
- visualization-tech
|
- visualization-tech
|
||||||
date: 2024-02-28
|
date: 2023-12-18
|
||||||
---
|
---
|
||||||
|
|
||||||
# Reference
|
# Reference
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- tableau
|
- tableau
|
||||||
- data-visual
|
- data-visual
|
||||||
- data
|
- data
|
||||||
date: 2024-02-28
|
date: 2023-12-18
|
||||||
---
|
---
|
||||||
|
|
||||||
# What is Tableau
|
# What is Tableau
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Food - MOC
|
|||||||
tags:
|
tags:
|
||||||
- food
|
- food
|
||||||
- MOC
|
- MOC
|
||||||
date: 2023-12-01
|
date: 2023-12-03
|
||||||
---
|
---
|
||||||
# Intro
|
# Intro
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
title: Evaluation Criteria
|
title: Evaluation Criteria
|
||||||
tags:
|
tags:
|
||||||
- food
|
- food
|
||||||
date: 2023-12-01
|
date: 2023-12-03
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -4,5 +4,5 @@ tags:
|
|||||||
- article
|
- article
|
||||||
- 文学
|
- 文学
|
||||||
- MOC
|
- MOC
|
||||||
date: 2023-05-01
|
date: 2023-11-30
|
||||||
---
|
---
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: 文学
|
|||||||
tags:
|
tags:
|
||||||
- MOC
|
- MOC
|
||||||
- 文学
|
- 文学
|
||||||
date: 2023-05-01
|
date: 2023-11-30
|
||||||
---
|
---
|
||||||
|
|
||||||
In this MOC, it shows you the path to what I record for some interesting sentences, including Chinese and English, even Japanese.
|
In this MOC, it shows you the path to what I record for some interesting sentences, including Chinese and English, even Japanese.
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
title: Poem in 2018
|
title: Poem in 2018
|
||||||
tags:
|
tags:
|
||||||
- poem
|
- poem
|
||||||
date: 2023-05-01
|
date: 2023-07-01
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Poem in 2022
|
|||||||
tags:
|
tags:
|
||||||
- 文学
|
- 文学
|
||||||
- poem
|
- poem
|
||||||
date: 2023-05-01
|
date: 2023-07-01
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
title: Poem in 2023
|
title: Poem in 2023
|
||||||
tags:
|
tags:
|
||||||
- poem
|
- poem
|
||||||
date: 2023-05-01
|
date: 2023-07-01
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: My Poem
|
|||||||
tags:
|
tags:
|
||||||
- 文学
|
- 文学
|
||||||
- poem
|
- poem
|
||||||
date: 2023-05-01
|
date: 2023-07-01
|
||||||
---
|
---
|
||||||
|
|
||||||
* [2018](literature/poem/2018.md)
|
* [2018](literature/poem/2018.md)
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- 文学
|
- 文学
|
||||||
- 摘抄
|
- 摘抄
|
||||||
- commets
|
- commets
|
||||||
date: 2023-05-01
|
date: 2023-07-03
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- 摘抄
|
- 摘抄
|
||||||
- inspiration
|
- inspiration
|
||||||
- feeling
|
- feeling
|
||||||
date: 2023-05-01
|
date: 2023-11-30
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- 摘抄
|
- 摘抄
|
||||||
- love
|
- love
|
||||||
- poem
|
- poem
|
||||||
date: 2023-05-01
|
date: 2024-02-28
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- 文学
|
- 文学
|
||||||
- 摘抄
|
- 摘抄
|
||||||
- motivation
|
- motivation
|
||||||
date: 2023-05-01
|
date: 2023-09-13
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- 句子
|
- 句子
|
||||||
- 文学
|
- 文学
|
||||||
- 摘抄
|
- 摘抄
|
||||||
date: 2023-05-01
|
date: 2023-05-12
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tag:
|
|||||||
- 文学
|
- 文学
|
||||||
- 摘抄
|
- 摘抄
|
||||||
- music
|
- music
|
||||||
date: 2023-05-01
|
date: 2023-04-22
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tag:
|
|||||||
- 句子
|
- 句子
|
||||||
- 文学
|
- 文学
|
||||||
- 摘抄
|
- 摘抄
|
||||||
date: 2023-05-01
|
date: 2023-12-04
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- 文学
|
- 文学
|
||||||
- 摘抄
|
- 摘抄
|
||||||
- poem
|
- poem
|
||||||
date: 2023-05-01
|
date: 2023-12-12
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- 文学
|
- 文学
|
||||||
- 摘抄
|
- 摘抄
|
||||||
- MOC
|
- MOC
|
||||||
date: 2023-05-01
|
date: 2023-11-30
|
||||||
---
|
---
|
||||||
|
|
||||||
* [🌸Love about](literature/sentence/love_about.md)
|
* [🌸Love about](literature/sentence/love_about.md)
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: 🧙♂️Wisdom
|
|||||||
tags:
|
tags:
|
||||||
- 文学
|
- 文学
|
||||||
- 摘抄
|
- 摘抄
|
||||||
date: 2023-05-01
|
date: 2024-01-02
|
||||||
---
|
---
|
||||||
|
|
||||||
> [!quote]
|
> [!quote]
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Log 2023.07.01 - 云朵也是会动滴☁️
|
|||||||
tags:
|
tags:
|
||||||
- log
|
- log
|
||||||
- photography
|
- photography
|
||||||
date: 2023-07-01
|
date: 2023-09-11
|
||||||
---
|
---
|
||||||
|
|
||||||
晚上去食堂吃饭的路上,看到了今天最棒的云
|
晚上去食堂吃饭的路上,看到了今天最棒的云
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- pixel-art
|
- pixel-art
|
||||||
- log
|
- log
|
||||||
- clustering
|
- clustering
|
||||||
date: 2023-07-03
|
date: 2023-09-11
|
||||||
---
|
---
|
||||||
|
|
||||||
今天用k-means聚类算法做了一个像素化的效果,还蛮好玩的
|
今天用k-means聚类算法做了一个像素化的效果,还蛮好玩的
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- log
|
- log
|
||||||
- daily
|
- daily
|
||||||
- 文学
|
- 文学
|
||||||
date: 2023-07-01
|
date: 2023-09-27
|
||||||
---
|
---
|
||||||
|
|
||||||
# Log 2023
|
# Log 2023
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Math MOC
|
|||||||
tags:
|
tags:
|
||||||
- math
|
- math
|
||||||
- MOC
|
- MOC
|
||||||
date: 2024-02-28
|
date: 2023-12-03
|
||||||
---
|
---
|
||||||
|
|
||||||
# Statistics
|
# Statistics
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- math
|
- math
|
||||||
- statistics
|
- statistics
|
||||||
- basic
|
- basic
|
||||||
date: 2024-02-28
|
date: 2023-05-23
|
||||||
---
|
---
|
||||||
|
|
||||||
**分位数**(英语:Quantile),亦称**分位点**,是指用分割点(cut point)将一个随机变量的概率分布范围分为几个具有相同概率的连续区间。分割点的数量比划分出的区间少1,例如3个分割点能分出4个区间。
|
**分位数**(英语:Quantile),亦称**分位点**,是指用分割点(cut point)将一个随机变量的概率分布范围分为几个具有相同概率的连续区间。分割点的数量比划分出的区间少1,例如3个分割点能分出4个区间。
|
||||||
|
|||||||
@ -7,7 +7,7 @@ tags:
|
|||||||
- algorithm
|
- algorithm
|
||||||
- discrete-mathematics
|
- discrete-mathematics
|
||||||
- set-theory
|
- set-theory
|
||||||
date: 2024-02-28
|
date: 2023-07-07
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- math
|
- math
|
||||||
- optimize
|
- optimize
|
||||||
- optimization
|
- optimization
|
||||||
date: 2024-02-28
|
date: 2023-12-03
|
||||||
---
|
---
|
||||||
|
|
||||||
# Why I write this note?
|
# Why I write this note?
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: Cauchy Principal Value
|
|||||||
tags:
|
tags:
|
||||||
- math
|
- math
|
||||||
- real-analysis
|
- real-analysis
|
||||||
date: 2024-02-28
|
date: 2024-01-12
|
||||||
---
|
---
|
||||||
# Notation
|
# Notation
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- Polaroid
|
- Polaroid
|
||||||
- photography
|
- photography
|
||||||
- skill
|
- skill
|
||||||
date: 2024-02-28
|
date: 2023-04-20
|
||||||
---
|
---
|
||||||
|
|
||||||
* [宝丽来翻拍9宫格](photography/aesthetic/Polaroid/Polaroid_showcase.md)
|
* [宝丽来翻拍9宫格](photography/aesthetic/Polaroid/Polaroid_showcase.md)
|
||||||
@ -3,7 +3,7 @@ title: How to use Moodboard
|
|||||||
tags:
|
tags:
|
||||||
- photography
|
- photography
|
||||||
- skill
|
- skill
|
||||||
date: 2024-02-28
|
date: 2023-04-20
|
||||||
---
|
---
|
||||||
|
|
||||||
# Overview
|
# Overview
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- Polaroid
|
- Polaroid
|
||||||
- film
|
- film
|
||||||
- skill
|
- skill
|
||||||
date: 2024-02-28
|
date: 2023-04-10
|
||||||
---
|
---
|
||||||
|
|
||||||
The most thing you need to know is that, **the right exposure is in your head**.
|
The most thing you need to know is that, **the right exposure is in your head**.
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- Polaroid
|
- Polaroid
|
||||||
- story
|
- story
|
||||||
- film
|
- film
|
||||||
date: 2024-02-28
|
date: 2024-02-27
|
||||||
---
|
---
|
||||||
|
|
||||||
# Hiking
|
# Hiking
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- photography
|
- photography
|
||||||
- landscape
|
- landscape
|
||||||
- MOC
|
- MOC
|
||||||
date: 2024-02-28
|
date: 2023-04-22
|
||||||
---
|
---
|
||||||
|
|
||||||
* [🌊Sea MOC](photography/aesthetic/Landscape/Sea/Sea_MOC.md)
|
* [🌊Sea MOC](photography/aesthetic/Landscape/Sea/Sea_MOC.md)
|
||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- photography
|
- photography
|
||||||
- landscape
|
- landscape
|
||||||
- photography
|
- photography
|
||||||
date: 2024-02-28
|
date: 2023-04-22
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- sea
|
- sea
|
||||||
- photography
|
- photography
|
||||||
- aesthetic
|
- aesthetic
|
||||||
date: 2024-02-28
|
date: 2023-04-22
|
||||||
---
|
---
|
||||||
|
|
||||||
* [Fujifilm Blue🌊, 小红书-Philips谢骏](photography/aesthetic/Landscape/Sea/Fujifilm_Blue_by_小红书_Philips谢骏.md)
|
* [Fujifilm Blue🌊, 小红书-Philips谢骏](photography/aesthetic/Landscape/Sea/Fujifilm_Blue_by_小红书_Philips谢骏.md)
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- sea
|
- sea
|
||||||
- landscape
|
- landscape
|
||||||
- aesthetic
|
- aesthetic
|
||||||
date: 2024-02-28
|
date: 2023-04-22
|
||||||
---
|
---
|
||||||

|

|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- photography
|
- photography
|
||||||
- Polaroid
|
- Polaroid
|
||||||
- MOC
|
- MOC
|
||||||
date: 2024-02-28
|
date: 2023-04-20
|
||||||
---
|
---
|
||||||
|
|
||||||
* [🖼How to show Polaroid photo in a great way](photography/aesthetic/Polaroid/Polaroid_showcase.md)
|
* [🖼How to show Polaroid photo in a great way](photography/aesthetic/Polaroid/Polaroid_showcase.md)
|
||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- photography
|
- photography
|
||||||
- Polaroid
|
- Polaroid
|
||||||
- share
|
- share
|
||||||
date: 2024-02-28
|
date: 2023-04-20
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ tags:
|
|||||||
- photography
|
- photography
|
||||||
- portrait
|
- portrait
|
||||||
- 摘抄
|
- 摘抄
|
||||||
date: 2024-02-28
|
date: 2023-04-20
|
||||||
---
|
---
|
||||||
|
|
||||||
Credits to [Marta Bevacqua](https://www.martabevacquaphotography.com/),
|
Credits to [Marta Bevacqua](https://www.martabevacquaphotography.com/),
|
||||||
|
|||||||
@ -6,7 +6,7 @@ tags:
|
|||||||
- korean
|
- korean
|
||||||
- cute
|
- cute
|
||||||
- 摘抄
|
- 摘抄
|
||||||
date: 2024-02-28
|
date: 2023-04-20
|
||||||
---
|
---
|
||||||
|
|
||||||
Credits to [MV - CHEEZE(치즈) _ Today's Mood(오늘의 기분)](https://www.youtube.com/watch?v=zRq_DlEzygk),
|
Credits to [MV - CHEEZE(치즈) _ Today's Mood(오늘의 기분)](https://www.youtube.com/watch?v=zRq_DlEzygk),
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- portrait
|
- portrait
|
||||||
- 摘抄
|
- 摘抄
|
||||||
- MOC
|
- MOC
|
||||||
date: 2024-02-28
|
date: 2023-04-20
|
||||||
---
|
---
|
||||||
|
|
||||||
* [🌸Flower & Girl](photography/aesthetic/Portrait/Flower_and_Girl.md)
|
* [🌸Flower & Girl](photography/aesthetic/Portrait/Flower_and_Girl.md)
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- grainy
|
- grainy
|
||||||
- style
|
- style
|
||||||
- share
|
- share
|
||||||
date: 2024-02-28
|
date: 2023-04-20
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- style
|
- style
|
||||||
- share
|
- share
|
||||||
- MOC
|
- MOC
|
||||||
date: 2024-02-28
|
date: 2023-04-20
|
||||||
---
|
---
|
||||||
|
|
||||||
* [🌅Warmth - Nguan](photography/aesthetic/Style/Warmth_by_Nguan.md)
|
* [🌅Warmth - Nguan](photography/aesthetic/Style/Warmth_by_Nguan.md)
|
||||||
|
|||||||
@ -3,7 +3,7 @@ title: 🎈Warmth - Nguan
|
|||||||
tags:
|
tags:
|
||||||
- share
|
- share
|
||||||
- photography
|
- photography
|
||||||
date: 2024-02-28
|
date: 2023-04-20
|
||||||
---
|
---
|
||||||
|
|
||||||
Credits to [Nguan](https://www.instagram.com/_nguan_/)
|
Credits to [Nguan](https://www.instagram.com/_nguan_/)
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user