<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>LLM on nyanmo main blog</title>
    <link>https://www.nyanmo.info/tags/llm/</link>
    <description>Recent content in LLM on nyanmo main blog</description>
    <generator>Hugo</generator>
    <language>ja</language>
    <lastBuildDate>Tue, 16 Jun 2026 17:00:32 +0900</lastBuildDate>
    <atom:link href="https://www.nyanmo.info/tags/llm/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Whisper を Intel Arc で動かす</title>
      <link>https://www.nyanmo.info/posts/linux/whisperonintelarc/</link>
      <pubDate>Tue, 16 Jun 2026 17:00:32 +0900</pubDate>
      <guid>https://www.nyanmo.info/posts/linux/whisperonintelarc/</guid>
      <description>&lt;h2 id=&#34;この記事を作った動機&#34;&gt;この記事を作った動機&lt;/h2&gt;
&lt;p&gt;　Intel Arc で音声からの文字起こしができる Whisper を動かせることが分かったので記録したい。Whisper は PyTorch を使っているが、それを XPU に対応したものに差し替えることで動作が確認できたことに関して、具体的に作業内容を記録したい。&lt;/p&gt;
&lt;p&gt;　Whisper を使った文字起こしでは、Vibe を使うことでもできるが、Nvidia の CUDA 環境で無い限り、Intel Arc 環境においては、Vulkan を使ってしまう。PyTorch 環境においては XPU を使わなければ、Intel Arc の GPU 性能をフルに使い切れていない様相が見受けられたことも背景にある。&lt;/p&gt;
&lt;h2 id=&#34;環境の前提&#34;&gt;環境の前提&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Intel Arc を使っている&lt;/li&gt;
&lt;li&gt;Conda 環境を導入済み&lt;/li&gt;
&lt;li&gt;Linux 環境&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;記事の作業内容のまとめ&#34;&gt;記事の作業内容のまとめ&lt;/h2&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;conda create -n whisper
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;conda activate whisper
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;conda install pip
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;pip install -U openai-whisper
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;pip uninstall torch
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/xpu
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;whisper-のインストール&#34;&gt;Whisper のインストール&lt;/h2&gt;
&lt;h3 id=&#34;conda-環境を専用に作る&#34;&gt;conda 環境を専用に作る&lt;/h3&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;conda create -n whisper
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;conda activate whisper
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;conda install pip
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;whisper-を-pip-でインストール&#34;&gt;whisper を pip でインストール&lt;/h3&gt;
&lt;p&gt;　一旦 Nvidia 環境用の pytorch などがインストールされてしまうが、一旦はインストールを終わらせる。&lt;/p&gt;</description>
    </item>
    <item>
      <title>Google Chrome で AI モード と AI Overview を止めたい</title>
      <link>https://www.nyanmo.info/posts/webdevelop/stopgooglechromefromshowingaimode/</link>
      <pubDate>Tue, 02 Dec 2025 12:32:35 +0900</pubDate>
      <guid>https://www.nyanmo.info/posts/webdevelop/stopgooglechromefromshowingaimode/</guid>
      <description>&lt;h2 id=&#34;この記事を作った動機&#34;&gt;この記事を作った動機&lt;/h2&gt;
&lt;p&gt;　Google が正規の手順で無効にできないようにして強制的に、AI モード や AI Overview なるものを押し付けてくるので、無効化する方法についてまとめておきたい。&lt;/p&gt;
&lt;h2 id=&#34;無効化手順&#34;&gt;無効化手順&lt;/h2&gt;
&lt;h3 id=&#34;aiモード-無効化&#34;&gt;AIモード 無効化&lt;/h3&gt;
&lt;h4 id=&#34;google-chrome-の検索バーの問題の様子&#34;&gt;Google Chrome の検索バーの問題の様子&lt;/h4&gt;
&lt;p&gt;

&lt;div style=&#34;display:flex; justify-content:center; margin:10px; flex-direction: row;&#34;&gt;
    
    

    &lt;div style=&#34;width: 100%;&#34;&gt;
        &lt;img style=&#34;margin:10px;&#34; src=https://www.nyanmo.info/posts/webDevelop/stopGoogleChromeFromShowingAImode/GoogleChrome%e3%81%ab%e4%be%b5%e9%a3%9f%e3%81%99%e3%82%8bAI%e3%83%a2%e3%83%bc%e3%83%89.png alt=GoogleChromeに侵食するAIモード/&gt;
        
    &lt;/div&gt;
&lt;/div&gt;


&lt;div style=&#34;display:flex; justify-content:center; margin:10px; flex-direction: row;&#34;&gt;
    
    

    &lt;div style=&#34;width: 100%;&#34;&gt;
        &lt;img style=&#34;margin:10px;&#34; src=https://www.nyanmo.info/posts/webDevelop/stopGoogleChromeFromShowingAImode/%e6%a4%9c%e7%b4%a2%e3%83%90%e3%83%bc%e3%81%ab%e4%be%b5%e9%a3%9f%e3%81%99%e3%82%8bAI%e3%83%a2%e3%83%bc%e3%83%89.png alt=検索バーに侵食するAIモード/&gt;
        
    &lt;/div&gt;
&lt;/div&gt;&lt;/p&gt;
&lt;h4 id=&#34;chromeflagsを開く&#34;&gt;&lt;code&gt;chrome://flags&lt;/code&gt;を開く&lt;/h4&gt;


&lt;div style=&#34;display:flex; justify-content:center; margin:10px; flex-direction: row;&#34;&gt;
    
    

    &lt;div style=&#34;width: 100%;&#34;&gt;
        &lt;img style=&#34;margin:10px;&#34; src=https://www.nyanmo.info/posts/webDevelop/stopGoogleChromeFromShowingAImode/chrome%20flags%e3%82%92%e9%96%8b%e3%81%8f.png alt=chrome&amp;#32;flagsを開く/&gt;
        
    &lt;/div&gt;
&lt;/div&gt;
&lt;h4 id=&#34;ai-モード-に関連する項目を全部disabledにする&#34;&gt;&lt;code&gt;AI モード&lt;/code&gt; に関連する項目を全部&lt;code&gt;disabled&lt;/code&gt;にする&lt;/h4&gt;
&lt;p&gt;

&lt;div style=&#34;display:flex; justify-content:center; margin:10px; flex-direction: row;&#34;&gt;
    
    

    &lt;div style=&#34;width: 100%;&#34;&gt;
        &lt;img style=&#34;margin:10px;&#34; src=https://www.nyanmo.info/posts/webDevelop/stopGoogleChromeFromShowingAImode/Chrome%e5%86%85%e8%87%93%e3%81%ae%e6%a4%9c%e7%b4%a2%e3%83%90%e3%83%bc%e3%81%ab%e5%af%be%e3%81%99%e3%82%8b%e5%af%be%e5%bf%9c.png alt=Chrome内臓の検索バーに対する対応/&gt;
        
    &lt;/div&gt;
&lt;/div&gt;


&lt;div style=&#34;display:flex; justify-content:center; margin:10px; flex-direction: row;&#34;&gt;
    
    

    &lt;div style=&#34;width: 100%;&#34;&gt;
        &lt;img style=&#34;margin:10px;&#34; src=https://www.nyanmo.info/posts/webDevelop/stopGoogleChromeFromShowingAImode/%e6%a4%9c%e7%b4%a2%e3%83%90%e3%83%bc%e3%81%ab%e5%af%be%e3%81%99%e3%82%8b%e5%af%be%e5%87%a6.png alt=検索バーに対する対処/&gt;
        
    &lt;/div&gt;
&lt;/div&gt;


&lt;div style=&#34;display:flex; justify-content:center; margin:10px; flex-direction: row;&#34;&gt;
    
    

    &lt;div style=&#34;width: 100%;&#34;&gt;
        &lt;img style=&#34;margin:10px;&#34; src=https://www.nyanmo.info/posts/webDevelop/stopGoogleChromeFromShowingAImode/Chrome%e5%86%85%e8%87%93%e3%81%ae%e6%a4%9c%e7%b4%a2%e3%83%90%e3%83%bc%e3%81%ab%e5%af%be%e3%81%99%e3%82%8b%e5%af%be%e5%bf%9c1.png alt=Chrome内臓の検索バーに対する対応1/&gt;
        
    &lt;/div&gt;
&lt;/div&gt;&lt;/p&gt;
&lt;h4 id=&#34;問題が解消された状態&#34;&gt;問題が解消された状態&lt;/h4&gt;
&lt;p&gt;

&lt;div style=&#34;display:flex; justify-content:center; margin:10px; flex-direction: row;&#34;&gt;
    
    

    &lt;div style=&#34;width: 100%;&#34;&gt;
        &lt;img style=&#34;margin:10px;&#34; src=https://www.nyanmo.info/posts/webDevelop/stopGoogleChromeFromShowingAImode/%e5%95%8f%e9%a1%8c%e3%81%8c%e8%a7%a3%e6%b6%88%e3%81%95%e3%82%8c%e3%81%9f%e7%8a%b6%e6%85%8b.png alt=問題が解消された状態/&gt;
        
    &lt;/div&gt;
&lt;/div&gt;


&lt;div style=&#34;display:flex; justify-content:center; margin:10px; flex-direction: row;&#34;&gt;
    
    

    &lt;div style=&#34;width: 100%;&#34;&gt;
        &lt;img style=&#34;margin:10px;&#34; src=https://www.nyanmo.info/posts/webDevelop/stopGoogleChromeFromShowingAImode/%e6%a4%9c%e7%b4%a2%e3%83%90%e3%83%bc%e3%81%ab%e4%be%b5%e9%a3%9f%e3%81%99%e3%82%8bAI%e3%83%a2%e3%83%bc%e3%83%89%e3%82%92%e5%8f%96%e3%82%8a%e9%99%a4%e3%81%84%e3%81%9f%e7%8a%b6%e6%85%8b.png alt=検索バーに侵食するAIモードを取り除いた状態/&gt;
        
    &lt;/div&gt;
&lt;/div&gt;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
