[pre-commit.ci] pre-commit autoupdate (#7387)

* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/asottile/pyupgrade: v3.0.0 → v3.1.0](https://github.com/asottile/pyupgrade/compare/v3.0.0...v3.1.0)
- [github.com/codespell-project/codespell: v2.2.1 → v2.2.2](https://github.com/codespell-project/codespell/compare/v2.2.1...v2.2.2)

* updating DIRECTORY.md

* Fix typo discovered by codespell

* Fix typo discovered by codespell

* Update .pre-commit-config.yaml

* Update .pre-commit-config.yaml

* Update .pre-commit-config.yaml

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
pre-commit-ci[bot]
2022-10-17 21:59:25 +02:00
committed by GitHub
parent a34b756fd4
commit 0c7c5fa7b0
4 changed files with 7 additions and 5 deletions

View File

@ -26,7 +26,7 @@ repos:
- --profile=black - --profile=black
- repo: https://github.com/asottile/pyupgrade - repo: https://github.com/asottile/pyupgrade
rev: v3.0.0 rev: v3.1.0
hooks: hooks:
- id: pyupgrade - id: pyupgrade
args: args:
@ -55,14 +55,14 @@ repos:
additional_dependencies: [types-requests] additional_dependencies: [types-requests]
- repo: https://github.com/codespell-project/codespell - repo: https://github.com/codespell-project/codespell
rev: v2.2.1 rev: v2.2.2
hooks: hooks:
- id: codespell - id: codespell
args: args:
- --ignore-words-list=ans,crate,damon,fo,followings,hist,iff,mater,secant,som,sur,tim,zar - --ignore-words-list=ans,crate,damon,fo,followings,hist,iff,mater,secant,som,sur,tim,zar
- --skip="./.*,./strings/dictionary.txt,./strings/words.txt,./project_euler/problem_022/p022_names.txt"
exclude: | exclude: |
(?x)^( (?x)^(
ciphers/prehistoric_men.txt |
strings/dictionary.txt | strings/dictionary.txt |
strings/words.txt | strings/words.txt |
project_euler/problem_022/p022_names.txt project_euler/problem_022/p022_names.txt

View File

@ -642,6 +642,7 @@
* [Tower Of Hanoi](other/tower_of_hanoi.py) * [Tower Of Hanoi](other/tower_of_hanoi.py)
## Physics ## Physics
* [Casimir Effect](physics/casimir_effect.py)
* [Horizontal Projectile Motion](physics/horizontal_projectile_motion.py) * [Horizontal Projectile Motion](physics/horizontal_projectile_motion.py)
* [Lorentz Transformation Four Vector](physics/lorentz_transformation_four_vector.py) * [Lorentz Transformation Four Vector](physics/lorentz_transformation_four_vector.py)
* [N Body Simulation](physics/n_body_simulation.py) * [N Body Simulation](physics/n_body_simulation.py)
@ -928,6 +929,7 @@
* [Deutsch Jozsa](quantum/deutsch_jozsa.py) * [Deutsch Jozsa](quantum/deutsch_jozsa.py)
* [Half Adder](quantum/half_adder.py) * [Half Adder](quantum/half_adder.py)
* [Not Gate](quantum/not_gate.py) * [Not Gate](quantum/not_gate.py)
* [Q Full Adder](quantum/q_full_adder.py)
* [Quantum Entanglement](quantum/quantum_entanglement.py) * [Quantum Entanglement](quantum/quantum_entanglement.py)
* [Ripple Adder Classic](quantum/ripple_adder_classic.py) * [Ripple Adder Classic](quantum/ripple_adder_classic.py)
* [Single Qubit Measure](quantum/single_qubit_measure.py) * [Single Qubit Measure](quantum/single_qubit_measure.py)

View File

@ -29,7 +29,7 @@ This training phase is possible when data points are linear, but there again com
So, here comes the role of non-parametric algorithm which doesn't compute predictions based on fixed set of params. Rather parameters $\theta$ are computed individually for each query point/data point x. So, here comes the role of non-parametric algorithm which doesn't compute predictions based on fixed set of params. Rather parameters $\theta$ are computed individually for each query point/data point x.
<br /> <br />
<br /> <br />
While Computing $\theta$ , a higher "preferance" is given to points in the vicinity of x than points farther from x. While Computing $\theta$ , a higher preference is given to points in the vicinity of x than points farther from x.
Cost Function J($\theta$) = $\sum_{i=1}^m$ $w^i$ (($\theta$)$^T$ $x^i$ - $y^i$)$^2$ Cost Function J($\theta$) = $\sum_{i=1}^m$ $w^i$ (($\theta$)$^T$ $x^i$ - $y^i$)$^2$

View File

@ -15,7 +15,7 @@ def is_square_free(factors: list[int]) -> bool:
False False
These are wrong but should return some value These are wrong but should return some value
it simply checks for repition in the numbers. it simply checks for repetition in the numbers.
>>> is_square_free([1, 3, 4, 'sd', 0.0]) >>> is_square_free([1, 3, 4, 'sd', 0.0])
True True