https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/
+ (Ubuntu)
python3 -m pip install --user virtualenv twine setuptools wheel numpy
+ Windows
@software{thieu_nguyen_2020_3839812, | |
author = {Thieu Nguyen}, | |
title = {A framework of the state-of-the-art metaheuristics algorithms in python: mealpy}, | |
month = may, | |
year = 2020, | |
publisher = {Zenodo}, | |
doi = {10.5281/zenodo.3711948}, | |
url = {https://doi.org/10.5281/zenodo.3711948} | |
} |
## Upgrade the library first | |
## pip install opfunu --upgrade | |
## Current version: 0.7.1 | |
import numpy as np | |
from opfunu.cec.cec2013.unconstraint import Model as MD1 | |
from opfunu.cec.cec2013.unconstraint2 import Model as MD2 | |
problem_size = 100 | |
solution = np.ones(problem_size) |
git branch -m old_branch new_branch # Rename branch locally | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
from functools import total_ordering | |
@total_ordering | |
class WSN: | |
def __init__(self, mec_id, cpu_require, priority_level, generate_time, age): | |
self.mec_id = mec_id | |
self.cpu_require = cpu_require | |
self.priority_level = priority_level |
https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/
+ (Ubuntu)
python3 -m pip install --user virtualenv twine setuptools wheel numpy
+ Windows
@software{thieu_nguyen_2020_3839812, | |
author = {Thieu Nguyen}, | |
title = {A framework of the state-of-the-art metaheuristics algorithms in python: mealpy}, | |
month = may, | |
year = 2020, | |
publisher = {Zenodo}, | |
doi = {10.5281/zenodo.3711948}, | |
url = {https://doi.org/10.5281/zenodo.3711948} | |
} |
# 1st: Take a photo with portray image. | |
# 2nd: Use this website to make passport photo: https://www.cutout.pro/passport-photo-maker/upload | |
# 3nd: Download the transformation image above and run this code: | |
from PIL import Image | |
# Đường dẫn ảnh | |
input_image_path = "your_transformed_image.jpg" # Thay bằng đường dẫn ảnh gốc | |
output_image_path = "the_final_image_to_submit.jpg" |