こすたろーんエンジニアの試行錯誤部屋

作成物の備忘録を書いていきますー

2023-01-01から1ヶ月間の記事一覧

Build mysql environment with jetsonNX and docker

To learn about databases, we built a mysql environment This is a memorandum. contents contents abstract 1.crate a docker file 2.run docker container 参考 スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); abstract how to b…

【jupyter lab】dockerコンテナで立ち上げたjupyter labのパスワード変更

スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); 以前にJetson Xavier NXとDockerでjupyter notebookの環境構築を行いました technoxs-stacker.hatenablog.com このままではパスワードがデフォルトのままなので、今回はパスワードの変…

Building a jupyterlab environment that we can use pytorch in using Jetson Xavier NX and docker

I previously created a jupyterlab environment using an existing docker image. technoxs-stacker.hatenablog.com I thought I might run pytrorch on jupyterlab in the future, so I created an image with jupyterlab installed based on the previous…

【mysql】コマンドでCREATE,INSERTまでやってみた

この前mysqlの環境を構築しました technoxs-stacker.hatenablog.com 今回は作成したdbでテーブルを作成しデータを追加するところまでやってみました このブログは備忘録です 目次 目次 この記事でわかること 1.db作成 1.1 rootユーザでmysqlのdocker contain…

How to handle command line arguments in metaflow

I have built a metaflow environment before. I wanted to run metaflow by passing arguments. so I looked into it and tried it out. This is a memorandum. ※See below for environment construction technoxs-stacker.hatenablog.com contents content…

【mysql】jetsonNXとdockerでmysqlインストールした環境を構築する

データ分析のためのデータベースを学ぶため、mysqlの環境を構築しました このブログは備忘録です 目次 目次 この記事でわかること 1.dockerfileの作成 2.docker containerの起動 参考 スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); …

I tried tensorboradX.

tensorboardX is a dashboard tool that allows visualization of data flow graphs and variables (loss, accuracy, etc.) of the learning relationship. (pytorch version of tensorboard used in tensorflow) We will add tensorboardX into the simsiam…

netflixのmetaflowでpythonコマンドライン引数の対応方法

以前にmetaflowの環境を構築しましたが、引数を渡してmetaflowを実行したいと思い、 調べて試してみました こちらの記事は備忘録になります ※環境構築は以下を参照 technoxs-stacker.hatenablog.com 目次 目次 この記事でわかること 1.コードの改造 2.parame…