質問編集履歴

4

ごじ

2024/09/12 04:14

投稿

Tyutohannpa_
Tyutohannpa_

スコア25

test CHANGED
File without changes
test CHANGED
@@ -9,7 +9,7 @@
9
9
 
10
10
  ```ここに言語を入力
11
11
  E:\
12
- └── Data\
12
+ └── MyData\
13
13
  └── GPT_BOT\
14
14
  └── Assets\
15
15
  ├── StreamingAssets\

3

gozi

2024/09/12 04:03

投稿

Tyutohannpa_
Tyutohannpa_

スコア25

test CHANGED
File without changes
test CHANGED
@@ -48,7 +48,7 @@
48
48
  ### エラーメッセージ
49
49
  ```error
50
50
  Python script error: Traceback (most recent call last):
51
- File "E:\Namiki_Data\GPT_BOT\Assets\StreamingAssets\myproject\generate_image.py", line 5, in <module>
51
+ File "E:\MyData\GPT_BOT\Assets\StreamingAssets\myproject\generate_image.py", line 5, in <module>
52
52
  from models.big_resnet import Generator
53
53
  ModuleNotFoundError: No module named 'models'
54
54
 

2

誤字

2024/09/12 04:01

投稿

Tyutohannpa_
Tyutohannpa_

スコア25

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  ### 実現したいこと
2
2
  Unity上で、C#スクリプトを使ってpythonスクリプトを実行したい
3
- その間に出るPython module errorを無くしてimport できるようにしたい
3
+ その間に出るModuleNotFoundError:を無くしてimport できるようにしたい
4
4
 
5
5
  各ファイルの配置は以下のようになています。
6
6
  Unityでpython連携方法はこちらを参考にさせていただきました。
@@ -35,7 +35,7 @@
35
35
  ### 発生している問題・分からないこと
36
36
  ```generate_image.py
37
37
  import torch
38
- from models.big_resnet import Generator # 同じディレクトリ内のGeneratorを使うためのインポート
38
+ from models.big_resnet import Generator
39
39
  import config as Cfg # アップロードされたconfig.pyから設定をインポート
40
40
  ```
41
41
  上記 from models.big_resnet import Generator のmodelsでModuleNotFoundError:が出ており

1

書式の改善

2024/09/12 03:58

投稿

Tyutohannpa_
Tyutohannpa_

スコア25

test CHANGED
File without changes
test CHANGED
@@ -7,6 +7,7 @@
7
7
  [UnityとPythonを連携する【Python.NET】](https://zenn.dev/shiena/articles/unity-python)
8
8
  (C#)PythonImages.csで(Python)generate_image.pyを呼び出して実装しようとしています。
9
9
 
10
+ ```ここに言語を入力
10
11
  E:\
11
12
  └── Data\
12
13
  └── GPT_BOT\
@@ -28,8 +29,9 @@
28
29
  │ └── ops.py
29
30
 
30
31
  └── Scenes
31
- └── PythonImages.cs
32
+ └── PythonImages.cs
32
33
 
34
+ ```
33
35
  ### 発生している問題・分からないこと
34
36
  ```generate_image.py
35
37
  import torch