Standard Post with Image

コーディング向けLM Studioの調整方法:`top_p`、`top_k`、`repeat_penalty`を理解する

LM Studio をコーディング用途で使うとき、大事なのはモデルの選択だけではありません。実際には、top_p、top_k、repeat_penalty といった 生成パラメータの設定 が結果の正確さ・安定性・創造性に大きく影響します。

Read More
Standard Post with Image

ปรับแต่ง LM Studio สำหรับงานโค้ด: เข้าใจ `top_p`, `top_k` และ `repeat_penalty`

เวลาที่เราใช้ LM Studio เพื่อช่วยในการเขียนโค้ด ไม่ใช่แค่เลือกโมเดลที่ดีเท่านั้น แต่การตั้งค่า พารามิเตอร์การสร้างข้อความ (generation settings) ก็สำคัญมาก โดยเฉพาะ top_p, top_k และ repeat_penalty ที่มีผลต่อความแม่นยำ ความสร้างสรรค์ และความเสถียรของผลลัพธ์

Read More
Standard Post with Image

Fine-Tuning LM Studio for Coding: Mastering `top_p`, `top_k`, and `repeat_penalty`

When using LM Studio for coding tasks, your choice of model matters—but how you configure it matters just as much. Settings like top_p, top_k, and repeat_penalty control how the model generates text, balancing creativity, accuracy, and stability.

Read More
Standard Post with Image

コードで「よりよく考える」:数学的ショートカットで大規模ソフトウェアを理解する

Marcus du Sautoy著『Thinking Better: The Art of the Shortcut』からのインスピレーション

Read More
Standard Post with Image

คิดให้ดีกว่าไปกับโค้ด: ใช้คณิตศาสตร์ทางลัดเพื่อเข้าใจระบบซอฟต์แวร์ขนาดใหญ่

แรงบันดาลใจจากหนังสือ “Thinking Better: The Art of the Shortcut” โดย Marcus du Sautoy

Read More
Standard Post with Image

Thinking Better with Code: Using Mathematical Shortcuts to Master Large Codebases

Inspired by Marcus du Sautoy’s “Thinking Better: The Art of the Shortcut”

Read More
Standard Post with Image

NumPy の `np.meshgrid()` を徹底解説:なぜ必要なのか?順序を入れ替えるとどうなるのか?

Python や NumPy を使ってデータ分析や科学計算をしていると、np.meshgrid() という関数を見かけたことがあるかもしれません。ですが、次のような疑問を持つ人も多いでしょう:

Read More
Standard Post with Image

เข้าใจการใช้ `np.meshgrid()` ใน NumPy: ทำไมถึงจำเป็น และจะเกิดอะไรขึ้นถ้าสลับลำดับ?

หากคุณเคยใช้ NumPy ในการวิเคราะห์ข้อมูล การคำนวณทางวิทยาศาสตร์ หรือแม้แต่ใน Machine Learning คุณอาจเคยเจอฟังก์ชัน np.meshgrid() แต่หลายคนยังสงสัยว่า:

Read More
Standard Post with Image

Understanding `np.meshgrid()` in NumPy: Why It’s Needed and What Happens When You Swap It

If you’ve worked with NumPy for data analysis, scientific computing, or machine learning, you’ve probably encountered the np.meshgrid() function. But many users ask:

Read More
Standard Post with Image

FastAPI で Google OAuth を使った Single Sign-On (SSO) を実装する方法

現代のアプリユーザーは、新しいパスワードを作ることを望んでいません。その解決策が SSO(シングルサインオン) です。 この記事では、FastAPI, MongoDB, JWT, そして fastapi-sso ライブラリを使って、Google アカウントでログイン可能な SSO を構築する方法をステップ・バイ・ステップで解説します。

Read More