冰島自由行2024冬天旅遊指南: 行程規劃/保險/自駕注意
前言
在德國讀雙聯終於考完期末考時,那時是二月初。我們想著要怎麼規劃一個月的寒假,剛好小夥伴們在我家討論想去的國家時,大家都有相同的願望就是去冰島看極光,剛好極光最適合觀賞的月份是10月~3月,因此我們就開啟了Flyscanner搜尋哪一天的機票最便宜,看了看發現2/26的去程跟3/7回程最便宜,二話不說就訂機票了,訂完機票我們就會有動力來開始計劃11天10夜的行程!
那這篇文章主要記錄了當時我們的行程規劃、預算規劃、自駕注意事項、保險、意外事件等等,希望對大家有幫助!
因為文章很長,建議根據旁邊的目錄來找你想要了解的章節…跳過去直接看比較快。
如果你滿足以下情境,那麼這篇文章對你來說就是一個很好的參考:
我想要環島,但是不知道該怎麼規劃行程? 查看:01-行程安排
必須下載的App和網站有哪些? 查看:02-必備App和網站
我是來歐洲交換的窮學生,希望可以省錢又可以玩得開心(預算在5萬內含機票)查看:03-開銷花費
雪地自駕跟租車有什麼需要注意的? 查看:04-自駕注意事項
汽車的保險該怎麼買? 查看:05-保險
如果自駕發生意外該怎麼辦? 查看:06-意外事件
冰川健行和藍冰 ...
IT Project Management 重點整理
前言
這是為了準備IT Project Management的期末考而整理的重點。
Agile vs Waterfall
Agile Methodology
Ref: 敏捷式開發(Agile)、瀑布式開發(Waterfall) 、敏捷式UX、Lean UX。兜幾?
敏捷的原則:減少浪費、快速產出、不斷循環、快速學習
敏捷是目前在軟體開發的趨勢,因為軟體開發的需求會隨著時間改變,所以需要一個可以快速產出並且可以快速改變的開發方法。
Positive Side of Agile
客戶會需要與團隊緊密合作,客戶獲得了strong sense of ownership。
如果有上市時間更重要,敏捷可以更快的上市產出基本版本。
Negative Side of Agile
有時候會因為衝刺到後面跟一開始的目標偏離,讓產品缺乏一致性,硬體產品也較不適用於此方法,畢竟硬體做出來就不能一直更改。
客戶可能沒這麼多時間
因為Agile專注在time-boxes交付和頻繁的重新確定優先順序,某些準備交付的項目可能無法在規定的時間內完成。可能需要額外的衝刺Spring(超出最初計劃的衝刺),從而 ...
Spark UI 觀察日誌
Job, Stage, Task
Ref: [看图说话] 基于Spark UI性能优化与调试——初级篇
Ref: 理解spark中的job、stage、task
本篇主要會記錄使用Spark的一些觀察日誌,希望可以了解以下問題:
Q: stage, task, job, partition 之間的關係?
Q: 何時會需要 Shuffle? Shuffle 是如何運作的?
簡單來說,一個 Spark Application 被提交之後,會根據 Action 的觸發產生 Job,每個 Job 根據 Shuffle 的分界點,又會被分成多個 Stage,而每個 Stage 預設會根據核心大小、資料大小,包含多個 Partition,也就是Task,以加快運算。大概是以下這種感覺:
Job
首先,Spark 中的數據都是由 RDD 組成的,而 RDD 是由 partition 組成的,每個 partition 代表一個數據塊。RDD 支援兩種操作分別是 Transformation 和 Action,Transformation 並不會讓程式馬上執行,而是會返回一個新的 RDD,而 ...
Hexo - Butterfly 版本的語言切換功能設置
前言
因為求職需求,需要把網站轉換成英文,但是也想保留中文,開始尋找方法可以做中英文切換。
剛好看到 Hexo - Butterfly 官方網站,發現他們的網站就有中英文切換的功能,但是找遍了各個網站都沒有人說明。
所以只好看source code來了解是怎麼做的。
奮鬥了 2 天,終於找到方法了,以下是我整理的方法。
Step 1. 開設一個 private en repository
參考:完美的Hexo多语言解决方案
靈感主要參考上述連結,主要運作原理就是透過建立多個 GitHub Pages,基本上會有一個專門運行中文的 repository,另外再開設一個專門運行英文的 repository,透過設定不同的 config.yml 和 _config.butterfly.yml來達到中英文切換的效果。
以下是我建立的兩個 repository
建立特定語言的 GitHub Pages
Step 2. 設置 [en/zh] config
先用_config.yml複製出兩個檔案分別是 config-en.yml跟config-zh.yml檔案,並且做以下設定。
...
Spark and Pyspark Local Mode & Cluster on Mac
Install Java
Open a terminal and execute java. It should redirect you to a download site (if you haven’t installed it already)
Python 3
如果你透過 homebrew 安裝,或 conda 可以跳過此步驟。
Browse to https://python.org/downloads, get a 3.x version (latest is 3.12.0.). Install the pkg.
Spark/Pyspark
Go to https://spark.apache.org/downloads.html and download Spark. Use Spark 3.5.0 for Hadoop 3.3
執行以下指令,我們把 spark 移動到 /usr/local 底下,通常 /usr/local 是使用者自己手動下載的非系統預設軟體,這個folder由用戶自己管理。
123# Untar Archive with: tar xfz ...
Pyspark 的基本概念
前言
本篇文章主要的目的是在整理 Spark: The Definitive Guide 這本書的內容,並且加上自己的理解,讓自己更加熟悉 Spark 的基本概念。
Spark Application
取自:Spark: The Definitive Guide
Spark Application mainly consist of two processes:
Driver process:
executing main() function, sits on a node in the cluster
maintaining information about the Spark Application
responding to a user’s program or input
analyzing, distributing, and scheduling work across the executors
Executor process:
executing code assigned to it by the driver
reporting the stat ...
Twitter Dataset - 使用 LSTM 預測文章的情緒
前言
最近選了一堂AI課程,這是第六個作業,主要教授內容為以下主題:
學會使用 LSTM
使用SpaCy
作業要求
Train a text classification on the TweetEval emotion recognition dataset using LSTMs and GRUs.
建立LSTM模型:Follow the example described here. Use the same architecture, but:
only use the last output of the LSTM in the loss function
use an embedding dim of 128
use a hidden dim of 256.
使用SpaCy切割字:Use spaCy to split the tweets into words.
挑選Top5000的字:Limit your vocabulary (i.e. the words that you converted to an index) to the most frequen ...
COCO Dataset - 使用 Faster RCNN + MobileNet 進行 Object Detection
前言
最近選了一堂AI課程,這是第四個作業,主要教授內容為以下主題:
Download Coco dataset
User pre-trained version of Faster R-CNN to predict the bounding box
Calculate IoU
作業要求
下載coco資料集:Download the file „2017 Val images [5/1GB]“ and „ 2017 Train/Val annotations [241MB]“ from
the Coco page. You can use the library pycocotools to load them into your notebook.
隨機從dataset選擇十張:Randomly select 10 images from this dataset.
使用pre-trained模型FasterR-CNN預測bbox:Use a pre-trained version of Faster R-CNN (Resnet50 backbone) to predict t ...
Flower102 Dataset - 使用 Transfer Learning 訓練 + 使用 Batch Normalization 於 CNN
前言
最近選了一堂AI課程,這是第四個作業,主要教授內容為以下主題:
Pick a dataset and train a model on it.
Transfer Learning - Fine Tuning.
Batch Normalization in CNN.
主要參考以下網站:
Flower102 Dataset
Transfer Learning
DataSet of Pytorch
Models for transfer learning
Shannon’s Blog of Transfer Learning
Resnet18
作業要求
Task:
選擇一個DataSet: Check out the torchvision DataSet of Pytorch and decide one dataset that you want to use (no
CIFAR, no ImageNet, no FashionMNIST).
印出圖片和資料大小:Show some example images of the dataset in the notebook ...
CIFAR10 Dataset - 使用 Pytorch 搭建 CNN + 啟用 GPU + 結果展示至 TensorBoard
前言
最近選了一堂AI課程,這是第三個作業,主要參考以下網站:
教授如何使用 Pytorch 搭建 CNN:Pytorch Tutorial
教授如何使用 TensorBoard:Pytorch TensorBoard Tutorial
在 CoLabe 使用 TensorBoard 教學:TensorBoard in CoLabe Tutorial
本篇的主要目的是理解 CNN,並試圖搭建更深層的 Network,並使用GPU加快效率,最後將結果 Loss 與 猜錯的結果 顯示在 TensorBoard 上。
環境設置與作業要求
環境設置:
Python 3.10.9
Pytorch 2.0.1
作業要求
Task:
先建立一個CNN:Train the same network as in the PyTorch CNN tutorial.
建立出CNN滿足以下要求:Change now the network architecture as follows and train the network:
Conv layer with 3x3 kernel and ...