發表文章

如何利用 AI 繪製物理講義簡圖

圖片
這裡分享的是如何使用編輯軟體 LaTeX 的 TikZ 套件,搭配 ChatGPT 來繪製物理教學用的簡圖。 例如,我們想要用電腦畫出類以下手繪圖的簡圖。 在 ChatGPT 裡上傳這張手繪圖,然後輸入以下指令: Please give me the LaTeX TikZ code for plotting the picture like the uploaded photo. ChatGPT 就會生成 LaTeX 的 TikZ 語法,稍做修飾,微調成我們所要的圖形。例如語法如下: \documentclass { standalone } \usepackage { tikz } \begin { document } \begin { tikzpicture } % Draw the fixed wall \draw [ thick ] (0,1) -- (0,-0.51); \draw [ thick ] (0,-0.51) -- (4,-0.51); % Draw the spring manually \draw [ thick ] (0,0) -- (0.2,0.2) -- (0.4,-0.2) -- (0.6,0.2) -- (0.8,-0.2) -- (1.0,0.2) -- (1.2,-0.2) -- (1.4,0.2) -- (1.6,-0.2) -- (1.8,0.2) -- (2,0); % Draw the mass block \draw [ thick ] (2,0.5) rectangle (3,-0.5) node [ midway ] { $m$ } ; % Draw the force arrow \draw [ ->,thick ] (3,0) -- (4,0) node [ midway, above ] { $F$ } ; % Add the spring constant label \node [ above ] at (1,0.3) { $k$ } ; \end { tikzpicture } \end { document } 把以上的 tex 檔案編繹後,即得到所生成的電腦版簡圖: 您可以在 TikZ.ne...

如何使用免費 AI 工具,把語音轉成文字,並且製作摘要

如何用 Whisper JAX 把語音轉成文字,並且改寫成文章和摘要 如何用 Whisper JAX 把語音轉成文字,並且改寫成文章和摘要 如何把語音轉成文字 Whisper JAX 是免費的 AI 語音轉文字的工具。首先在電腦上連進這個網頁。 https://huggingface.co/spaces/sanchit-gandhi/whisper-jax 網站裡有 3 個分頁,分別提供 Microphone,Audio file,或是 Youtube 的語音轉文字功能。 若要把音檔轉換成文字,只需要把音檔上傳到 Audio file 的界面,選擇 transcribe。若需要在輸出的文字檔加上時間標記,請勾選 Return timestamps。 按 Submit,即可開始語音轉文字的工作。 正常狀態下,轉檔速度是很快的。但由於這個網頁是開放的,所以如果遇到使用的人較多時,也許會需要排隊等待,或暫時失效。 如果要把原本沒有字幕的 Youtube 影片的語音轉換為文字,只要選擇 Whisper JAX 上的 Youtube 分頁,貼上 Youtube 影片網址即可。 應用實例:把 Youtube 影片的語音轉成文字 以這個我的 Youtube 為例,它是沒有字幕檔的。 Zotero 論文書目管理軟體的使用教學 https://www.youtube.com/watch?v=8b6A__O-nUY 把網址貼上 Whiper JAX 的 Youtube 分頁,選擇 transcribe,勾選 Return timestamps。按 Submit。 輸出的文字如下: [00:01.480 ->...

用 RStudio 製作 quarto 網站,放到 github 上

To deploy a Quarto website to GitHub using the usethis package in RStudio on Ubuntu 20.04, follow these steps: Install Required Packages : Ensure you have the usethis , quarto , and gitcreds packages installed. You can install them using the following commands in RStudio: install.packages ( "usethis" ) install.packages ( "quarto" ) install.packages ( "gitcreds" ) Create a New Quarto Project : Create a new Quarto project in RStudio. You can do this by navigating to File > New Project > New Directory > Quarto Website . Set git username and password (token) if you first use git : usethis :: use_git_config ( user.name = "Your Name" , user.email = "your.email@example.com" ) Set git token (password), you have to get the token from github.com before use : gitcreds :: gitcreds_...

如何在電腦上寫 Python 程式來使用 ChatGPT

本文介紹如何在電腦上寫 Python 程式,透過 OpenAI 的 API 來使用 ChatGPT 的對話問答功能。 材料與準備 首先必需要有一個 OpenAI 的 API key,可以到 OpenAI platform 購買。 電腦的作業系統裡,要安裝 Python。本文是在 Ubuntu 20.04 作業系統中,用 Python 3.8 實作。 參考 OpenAI 官網的 Developer quickstart 的介紹和例子。 方法與步驟 第一次寫程式前的準備 1. 建立虛擬環境 (virtual environment) 為了讓測試 Python 的環境可以單純,建議建立一個新的虛擬環境,使用虛擬環境裡的 Python 並用 pip 安裝所需要的套件,這樣可以避免干擾原來系統裡的套件,也較不會發生版本相依所產生的問題。 在終端機的工作目錄中,執行以下指令以新建一個虛擬環境: python -m venv myenv 指令中的 myenv 是自取的名字,讀者可以依喜好取別的名字。建立好之後可以看到多了一個名為 myenv 的目錄。 接著,要啟動進入這個虛擬環境,可以執行: source myenv/bin/activate 可以看到指令行出現 (myenv) $ 就代表已進入 myenv 這個虛擬環境。 2. 安裝 OpenAI Python 函式庫 在 (myenv) 中執行以下指令,以安裝 openai 這個函式庫: pip install --upgrade openai 安裝好以後,可以查看所安裝的 openai 版本: pip show openai 這裡看到我所安裝的 openai 是 1.35.15 版本。 3. 設定 API key 在系統中設定 API key,這麼一來,未來用這台電腦寫程式,就可以讀到 API key,不需要在程式碼中明示。 用文字編輯器 nano 編輯根目錄的 .bash_profile 這個檔案: nano ~/.bash_profile 在檔案中加上一行字: export OPENAI_API_KEY='your-api-key-here' 其中 your-api-key-here 要用自己的 API key 來替代。 存檔退...

ChatGPT prompt 指令大全

朋友分享了這個整理 ChatGPT prompt 指令的網頁,非常實用。 中文 https://www.explainthis.io/zh-hant/chatgpt 英文 https://www.explainthis.io/en/chatgpt Have fun.

從實證醫學的 PICO 向 AI 提問

PICO 是實證醫學 (Evidence-Based Medicine, EBM) 中一種實用的簡潔問題架構。 PICO 代表 Population, Intervention, Comparison, and Outcome。 透過把臨床問題寫成 PICO 的形式,可以更清楚所要探討的問題重點,以方便文獻搜尋和討論問題。 建議向 AI 提問的提問詞範例 例 1. 整理實證摘要 I am a medical doctor dedicated to evidence-based medicine. PICO stands for Population, Intervention, Comparison, and Outcome. Provide an evidence-based summary answering the problem in the context. [context] Problem: In patients with suspected deep vein thrombosis, is D-dimer testing more accurate than ultrasound in diagnosing the condition? Type: diagnosis P: patients with suspected deep vein thrombosis I: D-dimer testing C: ultrasound O: accuracy of diagnosis of deep vein thrombosis 例 2. 搜尋近期文獻 I am a medical doctor dedicated to evidence-based medicine. PICO stands for Population, Intervention, Comparison, and Outcome. Search for the latest evidence on the problem in the context. [context] Problem: In patients with suspected deep vein thrombosis, is D-dimer testing more accurate than ultraso...