ChatGPT+Diagrams:Show Me

ChatGPTにDiagrams:Show Meというプラグインを入れてみた。

文章を解析してフルーチャートやガンチャートを作成してくれるという

使えるようになると便利そうな気がする。

基本的にプログラムというのフローチャートを正しく書き出すことができるかどうかなんだろうな。

仕事をする上で、それぞれがみな頭の中に業務のフローチャートを持っている。その論理回路のイエス・ノーの選択をいくつも乗り越えて良いサービスを作り出しているのだ。

仕事ができる人や教え方が上手な人というのは、この業務のフローチャートを書き出すのが上手で、しかもブラックボックス化させない工夫ができているのだと思う。まちがってもこんなフローチャートは書かないと思う。

インプット→いろいろあって→アウトプット

Miroでドラッグアンドドロップを使用して編集というのが、ちょっとよくわからないのだけれど、ボチボチ触ってみて使えるようになりたいものです。

 

 

それにしてもChatGPTとにかく触ってみると面白そうですね。

Chat-GPTについて聞いてみる

## USER
platform.openai.com のwebサービスの使い方を知りたいのですが、初心者はどんなことができるのでしょうか?どういうふうに使い方をマスターしていくといいでしょうか?
## ASSISTANT
OpenAIのGPT-3は、プログラミングを通じてさまざまな形で利用することができます。その一部はAPIを通じてアクセスすることができます。OpenAIのWebサービスの基本的な使い方について説明します。
まずは、OpenAIの公式ウェブサイトからAPIキーを取得するところから始まります。APIキーは、OpenAIのサービスを利用するための一種のパスポートのようなものです。
次に、プログラムからOpenAIのAPIを呼び出すためのコードを書きます。Pythonが一般的に使われる言語ですが、他の言語でもAPIを呼び出すことは可能です。以下にPythonを使った例を示します:
“`python
import openai
openai.api_key = ‘your-api-key’
response = openai.Completion.create(
  engine=”text-davinci-003″,
  prompt=”Translate the following English text to French: ‘{}'”,
  max_tokens=60
)
“`
上記の例では、入力プロンプトとして “Translate the following English text to French: ‘{}'” を使用しています。{}内に翻訳したい英文を入れ、このプロンプトをモデルに渡すと、それに基づいてフランス語の翻訳を生成します。
始めるためのいくつかのステップ:
1. APIキーの取得:OpenAIの公式ウェブサイトからAPIキーを取得します。
2. 公式ドキュメンテーションの読解:OpenAIの公式ドキュメンテーションを読むことで、APIの詳細を理解します。
3. シンプルなプログラムの作成:上記のようなシンプルなプログラムを作成し、その動作を理解します。
4. プログラムの拡張:基本的なプログラムを理解したら、それを自分のニーズに合わせて拡張していきます。
これらのステップを踏むことで、OpenAIのWebサービスの使い方をマスターしていくことができるでしょう。
## USER
pythonの知識も必要なのですね?
## ASSISTANT
はい、OpenAIのAPIを利用するには基本的なPythonの知識が必要です。PythonはOpenAIが公式にサポートしている言語であり、そのため多くのチュートリアルやガイドがPythonで提供されています。
ただし、API自体はRESTfulなWebサービスであり、基本的にはどのプログラミング言語からでもアクセスできます。ただし、Python以外の言語を使用する場合、その言語でHTTPリクエストを行う方法やJSONデータを扱う方法を理解している必要があります。
Pythonをまだ学んでいない場合でも、Pythonは初心者にとって学びやすい言語とされており、Web上に多くのリソースが存在します。Pythonを学ぶことはOpenAIのAPIを利用するだけでなく、データ解析や機械学習など、幅広い分野で役立つスキルとなります。

ChatGPTくんに聞いてDeepLで翻訳

venv “C:\Program Files (x86)\stable-diffusion-webui-master\venv\Scripts\Python.exe” Python 3.10.6 (tags/v3.10.6:9c7b4bd, Aug 1 2022, 21:53:49) [MSC v.1932 64 bit (AMD64)] Commit hash: Installing requirements for Web UI Installing requirement for sd-webui-controlnet Installing imageio-ffmpeg requirement for depthmap script Installing pyqt5 requirement for depthmap script Launching Web UI with arguments: Error loading script: additional_networks.py Traceback (most recent call last): File “C:\Program Files (x86)\stable-diffusion-webui-master\modules\scripts.py”, line 170, in load_scripts exec(compiled, module.__dict__) File “C:\Program Files (x86)\stable-diffusion-webui-master\extensions\sd-webui-additional-networks\scripts\additional_networks.py”, line 11, in from scripts import lora_compvis, model_util, metadata_editor, xyz_grid_support File “C:\Program Files (x86)\stable-diffusion-webui-master\extensions\sd-webui-additional-networks\scripts\model_util.py”, line 11, in from modules import shared, sd_models, hashes ImportError: cannot import name ‘hashes’ from ‘modules’ (unknown location) Error loading script: metadata_editor.py Traceback (most recent call last): File “C:\Program Files (x86)\stable-diffusion-webui-master\modules\scripts.py”, line 170, in load_scripts exec(compiled, module.__dict__) File “C:\Program Files (x86)\stable-diffusion-webui-master\extensions\sd-webui-additional-networks\scripts\metadata_editor.py”, line 14, in from modules.ui_components import ToolButton ModuleNotFoundError: No module named ‘modules.ui_components’ Error loading script: model_util.py Traceback (most recent call last): File “C:\Program Files (x86)\stable-diffusion-webui-master\modules\scripts.py”, line 170, in load_scripts exec(compiled, module.__dict__) File “C:\Program Files (x86)\stable-diffusion-webui-master\extensions\sd-webui-additional-networks\scripts\model_util.py”, line 11, in from modules import shared, sd_models, hashes ImportError: cannot import name ‘hashes’ from ‘modules’ (unknown location) Error loading script: safetensors_hack.py Traceback (most recent call last): File “C:\Program Files (x86)\stable-diffusion-webui-master\modules\scripts.py”, line 170, in load_scripts exec(compiled, module.__dict__) File “C:\Program Files (x86)\stable-diffusion-webui-master\extensions\sd-webui-additional-networks\scripts\safetensors_hack.py”, line 7, in import safetensors ModuleNotFoundError: No module named ‘safetensors’ Error loading script: xyz_grid_support.py Traceback (most recent call last): File “C:\Program Files (x86)\stable-diffusion-webui-master\modules\scripts.py”, line 170, in load_scripts exec(compiled, module.__dict__) File “C:\Program Files (x86)\stable-diffusion-webui-master\extensions\sd-webui-additional-networks\scripts\xyz_grid_support.py”, line 5, in from scripts import model_util, util File “C:\Program Files (x86)\stable-diffusion-webui-master\extensions\sd-webui-additional-networks\scripts\model_util.py”, line 11, in from modules import shared, sd_models, hashes ImportError: cannot import name ‘hashes’ from ‘modules’ (unknown location) Error loading script: controlnet.py Traceback (most recent call last): File “C:\Program Files (x86)\stable-diffusion-webui-master\modules\scripts.py”, line 170, in load_scripts exec(compiled, module.__dict__) File “C:\Program Files (x86)\stable-diffusion-webui-master\extensions\sd-webui-controlnet\scripts\controlnet.py”, line 19, in from modules.ui_components import ToolButton ModuleNotFoundError: No module named ‘modules.ui_components’ Error loading script: xyz_grid_support.py Traceback (most recent call last): File “C:\Program Files (x86)\stable-diffusion-webui-master\modules\scripts.py”, line 170, in load_scripts exec(compiled, module.__dict__) File “C:\Program Files (x86)\stable-diffusion-webui-master\extensions\sd-webui-controlnet\scripts\xyz_grid_support.py”, line 43, in xyz_grid = find_xyz_grid() File “C:\Program Files (x86)\stable-diffusion-webui-master\extensions\sd-webui-controlnet\scripts\xyz_grid_support.py”, line 7, in find_xyz_grid return data.module AttributeError: ‘ScriptClassData’ object has no attribute ‘module’ Error loading script: depthmap.py Traceback (most recent call last): File “C:\Program Files (x86)\stable-diffusion-webui-master\modules\scripts.py”, line 170, in load_scripts exec(compiled, module.__dict__) File “C:\Program Files (x86)\stable-diffusion-webui-master\extensions\stable-diffusion-webui-depthmap-script\scripts\depthmap.py”, line 7, in from modules.call_queue import wrap_gradio_gpu_call, wrap_queued_call, wrap_gradio_call ModuleNotFoundError: No module named ‘modules.call_queue’ LatentDiffusion: Running in eps-prediction mode DiffusionWrapper has 859.52 M params. making attention of type ‘vanilla’ with 512 in_channels Working with z of shape (1, 4, 32, 32) = 4096 dimensions. making attention of type ‘vanilla’ with 512 in_channels Loading weights [cc62bc47] from C:\Program Files (x86)\stable-diffusion-webui-master\models\Stable-diffusion\Any 6Ely3.ckpt Applying cross attention optimization (Doggettx). Model loaded. Loaded a total of 0 textual inversion embeddings. Embeddings: Running on local URL: http://127.0.0.1:7860 To create a public link, set `share=True` in `launch()`.

It seems that there are multiple errors occurring while launching the Web UI with some arguments.

The first error is related to the additional_networks.py script, which fails to import the hashes module from the modules package.

The second error is related to the metadata_editor.py script, which cannot find the modules.ui_components module.

The third error is related to the model_util.py script, which fails to import the hashes module from the modules package.

The fourth error is related to the safetensors_hack.py script, which cannot find the safetensors module.

The fifth error is related to the xyz_grid_support.py script, which fails to import the hashes module from the modules package.

The sixth error is related to the controlnet.py script, which cannot find the modules.ui_components module.

The seventh error is related to the xyz_grid_support.py script, which fails to find the module attribute of the ScriptClassData object.

The eighth error is related to the depthmap.py script, which fails to import the pyqt5 module and the imageio-ffmpeg module.

It seems that some required modules and packages are missing, so you may need to install them using a package manager like pip. Additionally, you may need to check the paths to the modules and packages, and make sure that they are correctly set.

 

いくつかの引数を指定してWeb UIを起動する際に、複数のエラーが発生しているようです。

最初のエラーは additional_networks.py スクリプトで、modules パッケージから hashes モジュールのインポートに失敗しています。

2つ目のエラーは、modules.ui_components モジュールを見つけられない metadata_editor.py スクリプトに関連するものです。

3つ目のエラーはmodel_util.pyスクリプトに関連するもので、modulesパッケージからhashesモジュールのインポートに失敗しています。

4つ目のエラーは、safetensors_hack.pyスクリプトに関連するもので、safetensorsモジュールを見つけることができません。

5番目のエラーは、xyz_grid_support.pyスクリプトに関連するもので、modulesパッケージからhashesモジュールのインポートに失敗しています。

6番目のエラーは、controlnet.pyスクリプトに関連するもので、modules.ui_componentsモジュールが見当たりません。

7番目のエラーは、xyz_grid_support.py スクリプトに関連するもので、ScriptClassData オブジェクトの module 属性を見つけることに失敗しています。

8つ目のエラーは、pyqt5モジュールとimageio-ffmpegモジュールのインポートに失敗した、depthmap.pyスクリプトに関連するものです。

必要なモジュールやパッケージが不足しているようなので、pipのようなパッケージマネージャを使ってインストールする必要があるかもしれません。さらに、モジュールやパッケージのパスを確認し、それらが正しく設定されていることを確認する必要があるかもしれません。

来年の予定を立てる

毎年この時期になると来年の予定とかやりたいことなどを書き出すというようなことになるのですが、

これから3年続けていこうとか、身につけたいなというようなことを箇条書するのがいいかなと思ったりする。

来年の春には54歳になってしまうので、老眼はきつくなってきたり、体の筋のどっかは常に痛い感じがするし、筋肉はどんどん硬くなってきて、痛めやすくなっているのだ。

毎日の屈伸とかストレッチ、ヨガ的なことをやってきたいと思う。

ホンマに体が固いのでジムも行きたい。

来年の春からは次女も高校生なので、もうあんまし世話もいらないと思うんですよ。

あた春までには五十肩も治っていると思うので、筋トレもジムで追い込み掛けることができると思う。

それからプログラミング、週に5時間ぐらいはなんとかエンジンとかUnityとかVisualStudioとか弄って面白がれるようになりたいです。

それから文章を書くこと、文字数をもっと増やしていろいろ文章に表していくようにします。

あと、来年は旅行に行きたいですな。

ソーシャルディスタンスを維持した形で、別に値引きとかクーポンとかそういうのはなしでいいので、正規の価格で宿泊したいなと考えています。

Verified by MonsterInsights