Canadian Covid Care Alliance


Canadian Covid Care Alliance

  • David Ross
  • Steven Pelech
  • Karen Levins

Purpose Of Corporation

  • Canadian Covid Care Alliance seeks to provide top quality, independent, balanced science-based public education information about Covid-19

Classes of Members

Class A members shall have the right to vote on all matters submitted to a vote of the members. Class B members shall not have the right to vote on any matters submitted to a vote of the members.

Class A members shall be entitled to receive dividends and other distributions from the corporation in proportion to their respective ownership interests in the corporation. Class B members shall not be entitled to receive any dividends or other distributions from the corporation.

Class A members shall have one representative on the board of directors, while Class B members shall not have any representation on the board of directors.

  1. The Class A members shall be entitled to receive notice of and to attend all meetings of the members of the Corporation and each Class A member shall have one (1) vote at each such meeting, except for meetings at which only members of another class are entitled to vote separately as a class.
  2. Except as otherwise provided by the Canada Not-for-Profit Corporations Act, S.C. 2009, c.23 the Class B members shall not be entitled to receive notice of, attend or vote at meetings of the members of the Corporation.

Distribution of Property on Liquidation

  • Canadian Covid Care Alliance seeks to provide top quality, independent, balanced science-based public education information about Covid-19

Additional Provisions

The best way to prevent the spread of COVID-19 is to practice social distancing, wear a face mask when in public, wash your hands often with soap and water for at least 20 seconds, avoid touching your face, cover your coughs and sneezes, clean and disinfect frequently touched surfaces, and stay home if you are feeling sick.

  • Directors shall serve without remuneration, and no director shall directly or indirectly receive any profit from his or her position as such, provided that a director may be reimbursed for reasonable expenses incurred in performing his or her duties. A director shall not be prohibited from receiving compensation for services provided to the corporation in another capacity.
  • The directors may appoint one or more directors, who shall hold office for a term expiring not later than the close of the next annual general meeting of members, but the total number of directors so appointed may not exceed one-third of the number of directors elected at the previous annual general meeting of members.
  • The corporation shall be carried on without the purpose of gain for its members, and any profits or other accretions to the corporation shall be used in furtherance of its purposes.

Restrictions

,
min_samples_leaf=1,
min_samples_split=2,
n_estimators=100)
rf.fit(X_train, y_train)

# Predict on training set
pred = rf.predict(X_test)

# Calculate the absolute errors
errors = abs(pred – y_test)

# Print out the mean absolute error (mae)
print(‘Mean Absolute Error:’, round(np.mean(errors), 2))

# Calculate mean absolute percentage error (MAPE)
mape = 100 * (errors / y_test)

# Calculate and display accuracy
accuracy = 100 – np.mean(mape)
print(‘Accuracy:’, round(accuracy, 2), ‘%.’)

# Random Forest Regression with GridSearchCV
def randomforestregressorgridsearchcv():

from sklearn.model_selection import GridSearchCV

# Create the parameter grid based on the results of random search
param_grid = { ‘bootstrap’: [True], ‘max_depth’: [80, 90, 100], ‘max_features’: [2, 3], ‘min_samples_leaf’: [3, 4], ‘min_samples_split’: [8, 10], ‘n_estimators’: [100]}

# Create a based model
rf = RandomForestRegressor()

# Instantiate the grid search model
gridsearchcv = GridSearchCV(estimator = rf, param_grid = param