21 questions
By executing code similar to the following in PyCharmfrom sklearn import svmxor_data = [P,Q,result[0, 0, 0],[0, 1, 1],[1, 0, 1],[1, 1, 0]]data = [ ]label = [ ]for row in xor_data:p=row[0]q = row[1]r=r...
I have a question about creating time series feature quantities in machine learning.From the attached image below, for example, ·A certain value tends to increase immediately after Morning.·Noon has n...
I'm reading the introduction to the technical critic's Data Scientist Training Reading Machine Learning The introductory scikit-learn page starts on page 128.When I tried the code over there, I got a ...
For the first time in my research on machine learning, I am still a beginner.I would like to calculate accuracy, precision, and recall by dealing with the problem of classification in the study.The nu...
The official scikit-learn document says Number of alpha long the regularization path, used for each l1_ratio. Could you tell me what Elasticnet's n_alpha argument is?
I am currently using Python's sklearn for machine learning.You can create a model and make predictions from that model.So I have a question. If you want to learn this model again, use that model Is it...
I am currently using Keras' CNN for multi-label image classification.Also, we reconfirmed the accuracy using various evaluation methods (Recall, Precision, F1 score, Accuracy) for scikit-learn as well...
Using the scikit-learn function train_test_split, as shown below, dataset_train,dataset_test=train_test_split(dataset,train_size=0.8)They will divide the data set into training and test data, but If t...
Look at the code given. The skeleton code is an implementation of the following models:Sales = \beta_0 X_1^2 + \beta_1 X_2 + \beta_2 X_2 X_3 + \beta_3 X_3 + \beta_4Sales=β Try to lower the value of th...
I'm trying to process data about weather data, but I'm getting an error, so please let me know!from sklearn.linear_modelimport LinearRegressionmodel1=LinearRegression()X=datay=data2model1.fit(X,y)mode...
« | - 2 - | » |
578 Understanding How to Configure Google API Key
572 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
617 Uncaught (inpromise) Error on Electron: An object could not be cloned
610 GDB gets version error when attempting to debug with the Presense SDK (IDE)
574 Who developed the "avformat-59.dll" that comes with FFmpeg?
© 2024 OneMinuteCode. All rights reserved.