다음 코드를 사용합니다. 동일한 무작위 종자에 대해 동일한 결과를 얻고 싶습니다. 나는 동일한 무작위 종자 (이 경우에는 1)를 사용하고 다른 결과를 얻는다.왜 무작위 시드가 파이썬에서 결과를 일정하게하지 않는지
import numpy as np
from random import seed
seed(1) ### <-----
파이썬의 random-class의 랜덤 씨앗을 설정
import pandas as pd
import numpy as np
from random import seed
# Load scikit's random forest classifier library
from sklearn.ensemble import RandomForestClassifier
from sklearn.model_selection import train_test_split
seed(1) ### <-----
file_path = 'https://archive.ics.uci.edu/ml/machine-learning-databases/undocumented/connectionist-bench/sonar/sonar.all-data'
dataset2 = pd.read_csv(file_path, header=None, sep=',')
from sklearn import preprocessing
le = preprocessing.LabelEncoder()
#Encoding
y = le.fit_transform(dataset2[60])
dataset2[60] = y
train, test = train_test_split(dataset2, test_size=0.1)
y = train[60]
y_test = test[60]
clf = RandomForestClassifier(n_jobs=100, random_state=0)
features = train.columns[0:59]
clf.fit(train[features], y)
# Apply the Classifier we trained to the test data
y_pred = clf.predict(test[features])
# Decode
y_test_label = le.inverse_transform(y_test)
y_pred_label = le.inverse_transform(y_pred)
from sklearn.metrics import accuracy_score
print (accuracy_score(y_test_label, y_pred_label))
# Two following results:
# 0.761904761905
# 0.90476190476
에 적용, 선'기차, 테스트 = train_test_split (dataset2, test_size = 0.1)'임의의 종자가 설정되어 있지 않습니다. – ShreyasG