-
Notifications
You must be signed in to change notification settings - Fork 330
first commit #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
first commit #2
Conversation
Isn't there any advanced classification techniques like Convolutional neural network available for classification? |
What is the accuracy of all the algorithms? |
|
No but we will provide it to test it's accuracy against basic classification techniques |
Is there any suggestions? |
y = np.array(df['Prediction'])[:-future_days] | ||
|
||
x_train, x_test, y_train, y_test = train_test_split(X, y, test_size=0.25) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are using the variable X in valid = df[X.shape[0]:], but it's not defined anywhere in the given code. I guess you should use X_train. And also the predictions array is being assigned to the valid DataFrame's 'Predictions' column through the line valid['Predictions'] = predictions. Assigning values to a new column in a slice may not function as intended because valid is produced as a slice of the original DataFrame df. You can make a new DataFrame just for the forecasts to get around this problem.
Hi Dr. Milaan Parmar, I hope you’re doing well. My name is Madhu Kaushik, and I’m currently learning Data Analytics I came across your project Cervical_Cancer_Predection_with_ML on GitHub and found it very useful. I would like to reference or adapt this project for my personal learning and to showcase on my CV/portfolio. Could you please confirm if this is okay under your project license . Thank you very much for your time and for sharing this project with the community! Best regards, |
No description provided.