mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-27 23:04: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__':
|
||||
|
||||
content_path = os.path.join(os.path.dirname(__file__))
|
||||
prefix_path = os.path.join(content_path, "content")
|
||||
content_path = r"C:\Users\83549\Documents\github_proj\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 file in files:
|
||||
@ -15,23 +18,57 @@ if __name__ == '__main__':
|
||||
|
||||
# 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)
|
||||
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]}")
|
||||
date = date_list[index]
|
||||
|
||||
# check if path exists, no matter capital or not
|
||||
print(os.path.join(prefix_path, file_path))
|
||||
# open file and write date into it
|
||||
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:
|
||||
# output error message
|
||||
print(f"Error: {file_path}")
|
||||
pass
|
||||
continue
|
||||
f = open(file_path, 'w', encoding="utf-8")
|
||||
f.writelines(lines)
|
||||
f.close()
|
||||
|
||||
print(f"{file_path} - {date}")
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@ title: Home
|
||||
tags:
|
||||
- catalog
|
||||
- MOC
|
||||
date: 2023-09-13
|
||||
date: 2023-09-19
|
||||
---
|
||||
🕵️♂️ This is Jude Wang's vault about his notebook, his knowledge, his second brain.
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
title: Atlas - Map of Maps
|
||||
tags:
|
||||
- MOC
|
||||
date: 2023-03-16
|
||||
date: 2024-02-28
|
||||
---
|
||||
|
||||
🚧 There are notebooks about his research career:
|
||||
|
||||
@ -3,7 +3,7 @@ title: Code Framework Learn
|
||||
tags:
|
||||
- web
|
||||
- code_tool
|
||||
date: 2023-06-06
|
||||
date: 2023-12-03
|
||||
---
|
||||
|
||||
# Web Framework
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
---
|
||||
title: Flask - MOC
|
||||
date: 2023-06-06
|
||||
date: 2023-12-03
|
||||
---
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- basic
|
||||
- coding-language
|
||||
- MOC
|
||||
date: 2023-06-06
|
||||
date: 2023-09-04
|
||||
---
|
||||
|
||||
# Python
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- python
|
||||
- coding-language
|
||||
- basic
|
||||
date: 2023-06-06
|
||||
date: 2023-09-04
|
||||
---
|
||||
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- math
|
||||
- MOC
|
||||
- geometry
|
||||
date: 2024-02-28
|
||||
date: 2024-02-27
|
||||
---
|
||||
|
||||
# 3D Geometry Algorithm
|
||||
|
||||
@ -3,7 +3,7 @@ title: Delaunay Triangulation
|
||||
tags:
|
||||
- math
|
||||
- geometry
|
||||
date: 2024-02-28
|
||||
date: 2023-09-04
|
||||
---
|
||||
# What is Delaunay Triangulation?
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- MOC
|
||||
- algorithm
|
||||
- data-structure
|
||||
date: 2024-02-28
|
||||
date: 2023-09-15
|
||||
---
|
||||
|
||||
# Tree-like Structure
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- data-structure
|
||||
- basic
|
||||
- algorithm
|
||||
date: 2024-02-28
|
||||
date: 2023-09-04
|
||||
---
|
||||
|
||||
# Basic Concept
|
||||
|
||||
@ -3,6 +3,6 @@ title: Minimum Spanning Tree
|
||||
tags:
|
||||
- data-structure
|
||||
- graph
|
||||
date: 2024-02-28
|
||||
date: 2023-09-15
|
||||
---
|
||||
Not now...
|
||||
@ -3,7 +3,7 @@ title: Spanning Tree
|
||||
tags:
|
||||
- graph
|
||||
- data-structure
|
||||
date: 2024-02-28
|
||||
date: 2023-09-19
|
||||
---
|
||||
|
||||
# What is Spanning Tree?
|
||||
|
||||
@ -3,7 +3,7 @@ title: Topological Sorting
|
||||
tags:
|
||||
- data-structure
|
||||
- graph
|
||||
date: 2024-02-28
|
||||
date: 2023-09-14
|
||||
---
|
||||
# What is Topological Sorting
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- algorithm
|
||||
- string
|
||||
- string-search
|
||||
date: 2024-02-28
|
||||
date: 2024-01-25
|
||||
---
|
||||
|
||||
# Abstract
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- data-structure
|
||||
- basic
|
||||
- algorithm
|
||||
date: 2024-02-28
|
||||
date: 2023-09-04
|
||||
---
|
||||
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@ title: Segment Tree
|
||||
tags:
|
||||
- data-structure
|
||||
- tree
|
||||
date: 2024-02-28
|
||||
date: 2023-09-13
|
||||
---
|
||||
# Overview
|
||||
|
||||
|
||||
@ -3,6 +3,6 @@ title: Two Pointers
|
||||
tags:
|
||||
- algorithm
|
||||
- pointer
|
||||
date: 2024-02-28
|
||||
date: 2024-01-17
|
||||
---
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@ title: Model Evaluation - MOC
|
||||
tags:
|
||||
- deep-learning
|
||||
- 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)
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- deep-learning
|
||||
- evaluation
|
||||
- time-series-dealing
|
||||
date: 2024-02-28
|
||||
date: 2024-01-17
|
||||
---
|
||||
|
||||

|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- deep-learning
|
||||
- model
|
||||
- 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.
|
||||
|
||||
@ -3,7 +3,7 @@ title: Famous Model MOC
|
||||
tags:
|
||||
- deep-learning
|
||||
- MOC
|
||||
date: 2024-02-28
|
||||
date: 2024-01-17
|
||||
---
|
||||
|
||||
# Time-series
|
||||
|
||||
@ -4,6 +4,6 @@ tags:
|
||||
- deep-learning
|
||||
- model
|
||||
- time-series-dealing
|
||||
date: 2024-02-28
|
||||
date: 2023-09-04
|
||||
---
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- deep-learning
|
||||
- LLM
|
||||
- NLP
|
||||
date: 2024-02-28
|
||||
date: 2024-01-17
|
||||
---
|
||||
|
||||
# Training
|
||||
|
||||
@ -5,7 +5,7 @@ tags:
|
||||
- LLM
|
||||
- deep-learning
|
||||
- basic
|
||||
date: 2024-02-28
|
||||
date: 2024-01-17
|
||||
---
|
||||
|
||||
# LLM Temperature
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- LLM
|
||||
- basic
|
||||
- langchain
|
||||
date: 2024-02-28
|
||||
date: 2024-01-17
|
||||
---
|
||||
|
||||
# What is LangChain
|
||||
|
||||
@ -5,7 +5,7 @@ tags:
|
||||
- metircs
|
||||
- deep-learning
|
||||
- benchmark
|
||||
date: 2024-02-28
|
||||
date: 2024-01-17
|
||||
---
|
||||
|
||||
# Overview
|
||||
|
||||
@ -5,7 +5,7 @@ tags:
|
||||
- deep-learning
|
||||
- RLHF
|
||||
- LLM-training-method
|
||||
date: 2024-02-28
|
||||
date: 2024-01-17
|
||||
---
|
||||
|
||||
|
||||
|
||||
@ -4,6 +4,6 @@ tags:
|
||||
- dataset
|
||||
- LLM
|
||||
- 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:
|
||||
- deep-learning
|
||||
- LLM
|
||||
date: 2024-02-28
|
||||
date: 2023-09-04
|
||||
---
|
||||
|
||||
|
||||
@ -5,7 +5,7 @@ tags:
|
||||
- LLM
|
||||
- fine-tune
|
||||
- LLaMA
|
||||
date: 2024-02-28
|
||||
date: 2024-01-17
|
||||
---
|
||||
|
||||

|
||||
|
||||
@ -3,7 +3,7 @@ title: LLM training steps
|
||||
tags:
|
||||
- LLM
|
||||
- deep-learning
|
||||
date: 2024-02-28
|
||||
date: 2023-09-04
|
||||
---
|
||||
|
||||
训练大型语言模型(LLM)的方法通常涉及以下步骤:
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- LLM
|
||||
- LLM-training-method
|
||||
- deep-learning
|
||||
date: 2024-02-28
|
||||
date: 2024-01-17
|
||||
---
|
||||
|
||||
# Find a dataset
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- MOC
|
||||
- deep-learning
|
||||
- interpretability
|
||||
date: 2024-02-28
|
||||
date: 2024-01-17
|
||||
---
|
||||
|
||||
* [SHAP](computer_sci/deep_learning_and_machine_learning/Model_interpretability/SHAP.md)
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- deep-learning
|
||||
- interpretability
|
||||
- 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
|
||||
|
||||
@ -5,6 +5,6 @@ tags:
|
||||
- deep-learning
|
||||
- tokenization
|
||||
- basic
|
||||
date: 2024-02-28
|
||||
date: 2023-09-04
|
||||
---
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@ tags:
|
||||
- metrics
|
||||
- time-series-dealing
|
||||
- evalution
|
||||
date: 2024-02-28
|
||||
date: 2024-01-17
|
||||
---
|
||||
|
||||

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

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

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

|
||||
|
||||
@ -5,7 +5,7 @@ tags:
|
||||
- style
|
||||
- share
|
||||
- MOC
|
||||
date: 2024-02-28
|
||||
date: 2023-04-20
|
||||
---
|
||||
|
||||
* [🌅Warmth - Nguan](photography/aesthetic/Style/Warmth_by_Nguan.md)
|
||||
|
||||
@ -3,7 +3,7 @@ title: 🎈Warmth - Nguan
|
||||
tags:
|
||||
- share
|
||||
- photography
|
||||
date: 2024-02-28
|
||||
date: 2023-04-20
|
||||
---
|
||||
|
||||
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