Compare commits

...

7 Commits
main ... 164911

Author SHA1 Message Date
autotest 6d03b6c88d 49MB_file - 副本 - 副本49MB_file - 副本 - 副本49MB_file - 副本 - 副本49MB_file - 副本 - 副本49MB_file - 副本 - 副本49MB_file - 副本 - 副本49MB_file - 副本 - 副本49MB_file - 副本 - 副本49MB_file - 副本 - 副本49MB_file - 副本 - 副本49MB_file
Signed-off-by: autotest <32b7dbc8@leinao.ai>
2024-07-12 16:55:43 +08:00
autotest 7b75776e22 Add DJI_20230803122124_0010_V.JPG
Signed-off-by: autotest <32b7dbc8@leinao.ai>
2024-07-12 16:55:10 +08:00
autotest f1c10f0342 您可以使用多种命令生成一个特定大小的文件,例如 49MB。以下是在不同环境下的一些常用方法您可以使用多种命令生成一个特定大小的文件,例如 49MB。以下是在不同环境下的一些常用方法您可以使用多种命令生成一个特定大小的文件,例如 49MB。以下是在不同环境下的一些常用方法您可以使用多种命令生成一个特定大小的文件,例如 49MB。以下是在不同环境下的一些常用方法您可以使用多种命令生成一个特定大小的文件
Signed-off-by: autotest <32b7dbc8@leinao.ai>
2024-07-12 16:54:22 +08:00
autotest 368fedab47 您可以使用多种命令生成一个特定大小的文件,例如 49MB。以下是在不同环境下的一些常用方法:
在类 Unix 系统(如 Linux 和 macOS)中,dd 是一个常用工具,可以用于生成指定大小的文件。

Signed-off-by: autotest <32b7dbc8@leinao.ai>
2024-07-12 16:52:26 +08:00
autotest ede59515a6 38M的文件
Signed-off-by: autotest <32b7dbc8@leinao.ai>
2024-07-12 16:50:15 +08:00
autotest 15c35f1ba3 这个是py文件
Signed-off-by: autotest <32b7dbc8@leinao.ai>
2024-07-12 16:46:53 +08:00
autotest 9f2d9e8373 这是一张jpg图片
Signed-off-by: autotest <32b7dbc8@leinao.ai>
2024-07-12 16:43:50 +08:00
7 changed files with 31 additions and 0 deletions

BIN
1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
49MB_file Normal file

Binary file not shown.

BIN
49MB_file - 副本 Normal file

Binary file not shown.

BIN
49MB_file - 副本 - 副本 Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 MiB

31
hpo.py Normal file
View File

@ -0,0 +1,31 @@
from sklearn.datasets import load_iris
from sklearn.model_selection import train_test_split
from sklearn.svm import SVC
import argparse
# 加载数据集
iris = load_iris()
X = iris.data
y = iris.target
# 划分数据集
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
# 参数解析
parser = argparse.ArgumentParser(description='SVM Model for Iris dataset')
parser.add_argument('--C', type=float, default=1.0, help='Regularization parameter')
parser.add_argument('--kernel', type=str, default='rbf', help='Kernel type')
parser.add_argument('--gamma', type=float, default='scale', help='Kernel coefficient')
args = parser.parse_args()
# 定义支持向量机模型并设置参数
svm = SVC(C=args.C, kernel=args.kernel, gamma=args.gamma)
# 在训练集上拟合模型
svm.fit(X_train, y_train)
# 输出模型在测试集上的准确率
test_accuracy = svm.score(X_test, y_test)
print(f"Accuracy={test_accuracy}")

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 MiB