Paper: “Domain Generalization: A Survey” https://arxiv.org/abs/2103.02503
Dataset yang dipakai untuk Generalization papers:
Teknik untuk generalization
Artikel Saintek Umum
Paper: “Domain Generalization: A Survey” https://arxiv.org/abs/2103.02503
Dataset yang dipakai untuk Generalization papers:
Teknik untuk generalization
Salah satu masalah di Ubuntu adalah fitur jurnal membuat storage cepat penuh.
Solusi:
Cek penggunaan space untuk journal:
journalctl --disk-usage
Hapus jurnal yang lebih dari sekian hari
sudo journalctl --vacuum-time=2days
Hapus jurnal sampai storage yang terpakai di bawah batas tertentu
sudo journalctl --vacuum-size=100M
Prinsip migrasi Thingsboard ke server lain:
Sumber: https://groups.google.com/g/thingsboard/c/P7TcOnVIRqg
On the first computer, backup the database using postgres dump tool:
pg_dump thingsboard --host=localhost --username postgres -W > thingsboard.dump
Then, backup the /etc/thingsboard/conf directory:
sudo tar cvfz tb.tar.gz /etc/thingsboard/conf/*
Copy thingsboard.dump and tb.tar.gz to the new computer. On the new computer, with a fresh install of Thingsboard as per the posted instructions:
Stop Thingsboard, then:
sudo su postgres
dropdb thingsboard # this removes the database
createdb -T template0 thingsboard
psql thingsboard -U postgres -W < thingsboard.dump
Copy the /etc config files:
cd /
sudo tar xvfz /home/ubuntu/tb.tar.gz
Start Thingsboard.
Berikut ini cara mengalihkan akses di Apache 2
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
RewriteEngine On
RewriteRule (.*) https://iptek.web.id/%{REQUEST_URI}
Pada artikel ini dibahas usaha untuk mereplikasi solusi dari GWC_solution
Hardware yang dipakai: RTX 3090
Catatan
Create Conda environment
conda create --name gwc8 python=3.7.10 scipy=1.4.
conda activate gwc8
Install PyTorch
pip3 install torch==1.10.0 torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113
Install prerequisites
pip install -r requirements.txt
pip install numpy==1.19.5
pip uninstall -y PyYAML
pip install PyYAML==5.3.1
pip install ensemble_boxes
pip install setuptools==59.5.0
pip install jupyter
pip install matplotlib
pip install opencv-python
pip install tensorboard
Clone GWC_solution
cd /home/admin
git clone https://github.com/ksnxr/GWC_solution.git
Clone GWC_YOLOv5
cd GWC_solution
git clone https://github.com/ksnxr/GWC_YOLOv5.git
Jalankan jupyter notebook
jupyter notebook --allow-root --no-browser --ip=0.0.0.0
Setelah itu buka jupyter notebook dari browser
Eksekusi script berikut
Training
python train.py --name 4fold0 --img 800 --batch 8 --epochs 35 --data custom.yaml --weights yolov5x.pt --cache-images --save_period 1
Monitor training
cd /home/admin/GWC_solution/GWC_YOLOv5
tensorboard --logdir runs/train --bind_all
Berikut ini data flow diagram dari proses komputasi
Huggingface: https://huggingface.co/indonesian-nlp/gpt2-medium-indonesian
Paper:
Links: https://github.com/cahya-wirawan/indonesian-language-models/tree/master/Transformers
An example map in Fruit Market
Referensi
Referensi
Digital Ocean Tutorial: https://www.digitalocean.com/community/tutorials/how-to-set-up-dante-proxy-on-ubuntu-20-04