Grok https://grok.com/?referrer=website
Felo AI搜尋引擎 https://felo.ai/zh-Hant/search
AI詢問 https://www.perplexity.ai/
AI筆記NotebookLM https://notebooklm.google.com
AiStudio-Gemini https://aistudio.google.com/prompts/new_chat
POE(AI集合平台) https://poe.com/
Suno(Make a sung about anything) https://suno.com/
Gamma(做簡報) https://gamma.app/
Napkin(Get visuals from your text) https://www.napkin.ai/
AI生成圖 https://www.adobe.com/tw/products/firefly/features/ai-painting-generator.html
A1.Art生成圖 https://a1.art/
Playground(Design anything like a pro) https://playground.com/
剪映(做影片) https://www.capcut.cn/
影片編輯FlexClip https://www.flexclip.com/
限時塗鴨 https://quickdraw.withgoogle.com/?locale=zh_TW
AutoDraw(人人都可快速畫圖) https://www.autodraw.com/
Cartoonify(利用類神經網路將相片轉成卡通) https://www.cartoonify.de/
Scrying Pen(利用Sketch-RNN,即時預測你的繪圖軌跡)https://experiments.withgoogle.com/scrying-pen
免費線上Logo設計 https://www.designevo.com/tw/
Suno(Make a sung about anything) https://suno.com/
Miracle (語音找歌) https://dwave.cc:44344/demo/miracle
Bird Sounds(看見成千上萬的鳥鳴聲) https://experiments.withgoogle.com/ai/bird-sounds/view/
The Infinite Drum Machine(使用機器學習織成成千上萬的日常聲音) https://experiments.withgoogle.com/ai/drum-machine/view/
AI Duet(AI陪你一起彈奏鋼琴) https://experiments.withgoogle.com/ai/ai-duet/view/
NYSynth: Sound Maker(利用機器學創造新聲音) https://experiments.withgoogle.com/sound-maker
Beat Blender(利用機器學習混合節拍,以有趣的新方式創作音樂) https://experiments.withgoogle.com/ai/beat-blender/view/
Melody Mixer(使用機器學習探索旋律的有趣方式) https://melodymixer.withgoogle.com/ai/melody-mixer/view/
Imaginary Soundscape(上傳相片內容產生聲音) https://www.imaginarysoundscape.net/
Google Translate https://translate.google.com.tw/?hl=zh-TW
CoolEnglish https://www.coolenglish.edu.tw/
AI寫詩 https://poem.xiaoice.com/
Scribbling Speech(即時口語變成動畫) https://experiments.withgoogle.com/scribbling-speech
Semantris(字詞關聯遊戲) https://research.google.com/semantris
Talk to Books(AI瀏覽書籍裡的文句段落) https://books.google.com/talktobooks/
Font Map(各種字體之間的新關係) http://fontmap.ideo.com/
Fontjoy(創造新字體) https://fontjoy.com/
雅婷文字轉語音 https://asr.yating.tw/
手寫OCR https://www.onlineocr.net/zh_hant/
手寫數學公式 https://webdemo.myscript.com/views/math/index.html
意傳科技(台語,客語,原住民語) https://ithuan.tw/sanphin
SoundoFText https://soundoftext.com/
Microsoft Azure 人臉辨識
https://azure.microsoft.com/zh-tw/services/cognitive-services/face/#features
移動手臂在瀏覽器中指揮你自己的管弦樂隊
開源資料蒐集(KAGGLE) https://www.kaggle.com/
Lobe helps you train machine learning models with a free, easy to use tool.
玩遊戲學AI原理(神經網路) https://aegeorge42.github.io/
CNN模擬 https://cs.stanford.edu/people/karpathy/convnetjs/demo/mnist.html
先下載安裝Anaconda
建立 TensorFlow 的虛擬環境
conda create -n tensorflowenv python=3.8 anaconda
安裝完成後虛擬環境實體位置在
C:\使用者\<目前使用者帳號>\anaconda3\envs\tensorflowenv切換到 tensorflowenv 虛擬環境
activate tensorflowenv
安裝 TensorFlow
pip install tensorflow
安裝 keras
pip install keras
閉虛擬環境回到原來 Python 環境
deactivate
打開Anaconda3/Spyder(tensorflowenv)再輸入如下測試程式碼
import tensorflow as tf
print(tf.__version__)
import keras
print(keras.__version__)
在右下方就可看到程式執行結果(如下圖)
第一行為tensorflow版本
第二行為keras版本
https://blog.toright.com/posts/6725/google-colab-free-gpu-ai-train.html
https://www.tensorflow.org/tutorials/keras/classification?hl=zh-tw
https://www.tensorflow.org/tutorials/keras/text_classification?hl=zh-tw