chama0623 / study_ML

study Machine Learning
0 stars 0 forks source link

線形回帰問題についてまとめる #3

Open chama0623 opened 8 months ago

chama0623 commented 8 months ago

線形回帰問題として次のモデルについて調べてまとめる.

chama0623 commented 7 months ago

pytestでテストケースごとの成功/失敗を確認したいときはpytest -vで実行しよう.

chama0623 commented 7 months ago

pytestでテストケース実行時に標準出力print()させる場合には-sオプションを付けよう.

chama0623 commented 7 months ago

reprstrの違い by ChatGPT

strメソッドは人間が読みやすい形式でオブジェクトを表現し、reprメソッドはオブジェクトを再現するためのPythonコードを返します。

class MyClass:
    def __init__(self, x, y):
        self.x = x
        self.y = y

    def __str__(self):
        return f"MyClass instance with x={self.x} and y={self.y}"

    def __repr__(self):
        return f"MyClass({self.x}, {self.y})"