Python

Thumbnail of post image 053

インストール

pip install pyyaml

まずは、config.yamlを作成

# config.yamln_class: 10xml_path:/home/ubuntu/disk/xml

次にconfi ...

Pandas,Python

Thumbnail of post image 003

from pathlib import Pathdef txt_to_df(str_txt): # TXTをDataframeに変換する、何らかの処理 return dftxt_path = Path("./txt/")all_df = p ...

Python

Thumbnail of post image 105

ElsevierやSpringerなどのオンラインジャーナルは、一般的に、論文がXMLで提供されている。XMLで提供された論文からは、タイトルやアブストラクトや本文が取り出しやすいため、テキスト解析に重宝する。

今回はXM ...

Python

Thumbnail of post image 193

from datetime import datetimedatetime.now().strftime("%Y-%m-%d-%H-%M-%S")>>'2020-07-15-05-15-42'

Python,PyTorch

Thumbnail of post image 039

import osimport globimport randomimport numpy as npimport pandas as pdfrom sklearn.model_selection import train_test_spl ...

Python

Thumbnail of post image 010

# 正規表現で文字列から数字を抽出していたときのことl = re.findall(r"(\d*)", "for 5-10 h")# 抽出されたリストにはstrで数字が入っているl>># maxで大きい方をとりたいmax(l)>>'5' # ...

Pandas,Python

Thumbnail of post image 022

import pandas as pddef func(row): if row < 3: return row + row else: passdf = pd.DataFrame({'A':,'B':,'C':})df = df.a ...

Pandas,Python

Thumbnail of post image 046

import pandas as pddef func(row): if row < 3: return row + row else: return row + rowdf = pd.DataFrame({'A':,'B':,'C' ...

NLTK,Python

Thumbnail of post image 083

なぜかimportの仕方によって、出力結果が異なる

以下のimportだと、sinteringはsinterに変換されるが、heatingはheatにならない。

from nltk.corpus import wor ...

Python,Slack

Thumbnail of post image 043

import slackwebslack = slackweb.Slack(url="Webhook URL")slack.notify(text="This is message for you.")

参照