pyproject.toml for using Numpy / Scipyt
[tool.poetry] name = "project" version = "0.1.0" description = "" authors = ["kevin <your@gmail.com>"] readme = "README.md" packages = [{include…
[tool.poetry] name = "project" version = "0.1.0" description = "" authors = ["kevin <your@gmail.com>"] readme = "README.md" packages = [{include…
When you install Python using pyenv install 3.11.1, the below error might occur. ModuleNotFoundError: No module named ‘_ssl’ERROR: The Python…
ssh-keygen -t ed25519 -C "your_email@example.com" ssh -i path4sshkey user@domain -p port
Error: ENOSPC: System limit for number of file watchers reached, watch '/home-----' sudo sysctl fs.inotify.max_user_watches=524288
By using decorators, you can add your own processing before or after the processing of existing functions. For example, you…
Open the terminal and log in as root or use the sudo command. Edit the SSH server configuration file located…
How to import components on the parent directory How to import components on the same layer directory on the parent…
#!/bin/bash filename='requirements.txt' echo Start while read p; do echo "$p" poetry add "$p" done < "$filename"
self update Initialize your environment Install packages that are listed on pyproject.toml If you want to install the dependencies only…
Introduction Transformer (self-attention) has a very important place in natural language processing and has been introduced in numerous models such…