What is Pytest Pytest is a feature-rich, plugin-based ecosystem for testing your Python code. The pytest frame […]
Python Core Developers Release Version 3.10 — First Major Release Since Transition from Python 2
ZDNet reports:
“Python 3.10.0 is the newest major release of the Python programming language, and it contains many new features and optimizations,” CPython maintainers announced in a blogpost…
One of the headline features is “structural pattern m…
Beating C and Java, Python Becomes the #1 Most Popular Programming Language, Says TIOBE
ZDNet reports that Python “is now the most popular language, according to one popularity ranking.”
“For the first time in more than 20 years we have a new leader of the pack…” the TIOBE Index announced this month. “The long-standing hegemony of Jav…
Python 開発者に最も適した欧州 4 都市
Python 開発者に最も適した欧州の都市を The Next Web (TNW) が 4 都市選定している (TNW の記事)。
選定基準は TNW と提携する Jobbio の求職情報でスキルとして Python を要求する数の多さだ。具体的な求職件数は記載がなく、順位もつけられていないが、選定された 4 都市はダブリン・ロンドン・ベルリン・アムステルダムとなっている。
ダブリンには 1,200 社以上のスタートアップ企業があり、世界的なテクノロジー企業の 80 % が拠点を置く。グランドカ…
Python 3.10リリース
Python Software Foundationは4日、Python言語の最新バージョンとなる3.10.0をリリースした。公式ブログによると主要な新機能と変更点は以下の通りとなっている(Python Insider、TECH+)。
PEP 623 – Deprecate and prepare for the removal of the wstr member in PyUnicodeObject. PEP 604 – Allow writing union types as X | Y P…
HTTP Client MockツールのHTTPrettyを使って、requestsの処理を拡張したクラスのテストを書こう
サーモン大好き、横山です。 requestsの拡張クラスを作っていて、実際に動かした際のMockResponseを作成するのが難しいなと思ったことは無いですか?私はあります。 今回はそういうときのためのHTTP Clie […]…
「Chalice」を使ってサーバーレスなWeb APIを簡単につくる
Chaliceとは 公式によればChaliceとは以下のようなものらしいです。 A framework for writing serverless applications つまりはサーバーレスなアプリケーションのため […]
OpenCVのAKAZEで顔写真の類似度判定をやってみた
顔認証の技術などでも使われる顔の類似度判定を、OpenCVを使い追ってみたいと思います。今回は顔の特徴点を比較して類似度判定をしますが、人間が見て似ている・似ていないを判定するのと、どのくらい異なるのかも一緒に調べてみました。
…
scikit-learn 1.0でstableになったHistGradientBoostingClassifierを使ってみる
データアナリティクス事業本部の鈴木です。 はじめに 先日、scikit-learn 1.0がリリースされました。 Release Highlights for scikit-learn 1.0 リリースハイライトとリリー […]
FeatureUnionを使って機械学習パイプライン内で複数の変換結果を連結する
データアナリティクス事業本部の鈴木です。 今回は、sklearn.pipelineモジュールから、同一のカラムに異なるtransformerを適用し、その結果を結合する際に利用できるFeatureUnionを紹介します。 […]…