This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Trainable parameters: 1,296,888,448 | |
Unfrozen components: | |
- model.embed_tokens_extend.audio_embed.encoder.embed.out.weight | |
- model.embed_tokens_extend.audio_embed.encoder.embed.out.bias | |
- model.embed_tokens_extend.audio_embed.encoder.embed.conv.0.weight | |
- model.embed_tokens_extend.audio_embed.encoder.embed.conv.0.bias | |
- model.embed_tokens_extend.audio_embed.encoder.embed.conv.2.weight | |
- model.embed_tokens_extend.audio_embed.encoder.embed.conv.2.bias | |
- model.embed_tokens_extend.audio_embed.encoder.embed.conv.3.weight | |
- model.embed_tokens_extend.audio_embed.encoder.embed.conv.3.bias |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Training on 1 GPUs | |
Loading checkpoint shards: 100% | |
3/3 [00:02<00:00, 1.50it/s] | |
Audio embed structure: Phi4MMAudioEmbedding( | |
(drop): Dropout(p=0.0, inplace=False) | |
(encoder): ConformerEncoder( | |
(embed): NemoConvSubsampling( | |
(out): Linear(in_features=10240, out_features=1024, bias=True) | |
(conv): Sequential( | |
(0): Conv2d(1, 1024, kernel_size=(3, 3), stride=(2, 2), padding=(1, 1)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=== Critical Debug Info === | |
1. Top-level modules: ['base_model'] | |
2. All modules containing 'audio': ['base_model.model.base_model.model.model.embed_tokens_extend.audio_embed', 'base_model.model.base_model.model.model.embed_tokens_extend.audio_embed.drop', 'base_model.model.base_model.model.model.embed_tokens_extend.audio_embed.encoder', 'base_model.model.base_model.model.model.embed_tokens_extend.audio_embed.encoder.embed', 'base_model.model.base_model.model.model.embed_tokens_extend.audio_embed.encoder.embed.out', 'base_model.model.base_model.model.model.embed_tokens_extend.audio_embed.encoder.embed.conv', 'base_model.model.base_model.model.model.embed_tokens_extend.audio_embed.encoder.embed.conv.0', 'base_model.model.base_model.model.model.embed_tokens_extend.audio_embed.encoder.embed.conv.1', 'base_model.model.base_model.model.model.embed_tokens_extend.audio_embed.encoder.embed.conv.2', 'base_model.model.base_model.model.model.embed_tokens_extend.audio_embed.encoder.embed.conv.3', 'base_model.model.base_mo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""This Python module is an implementation of the SHA-256 algorithm. | |
From https://github.com/keanemind/Python-SHA-256""" | |
''' | |
MIT License | |
Copyright (c) 2018 Keane Nguyen | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Linux shell: | |
```bash | |
sudo -u postgres psql -c "CREATE DATABASE optuna_db;" | |
sudo -u postgres psql -c "CREATE USER optuna_user WITH PASSWORD 'password';" | |
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE optuna_db to optuna_user;" | |
``` | |
Window: | |
```cmd | |
psql -U postgres -W -c "CREATE DATABASE optuna_db;" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import contextlib | |
import json | |
import signal | |
import sys | |
from subprocess import PIPE, Popen, call | |
import click | |
import jessetk2.utils as utils | |
from optuna import samplers | |
import optuna |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/odoo/odoo.git | |
psql -U postgres -W -c "CREATE DATABASE odoo_db1;" | |
psql -U postgres -W -c "CREATE USER odoo_user1;" | |
psql -U postgres -W -c "GRANT ALL PRIVILEGES ON DATABASE odoo_db1 to odoo_user1;" | |
pip install setuptools wheel | |
pip install -r https://raw.githubusercontent.com/odoo/odoo/15.0/requirements.txt | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
### BEGIN INIT INFO | |
# Provides: influxd | |
# Required-Start: $all | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Start the InfluxDB process | |
### END INIT INFO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget -qO- https://repos.influxdata.com/influxdb.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdb.gpg > /dev/null | |
export DISTRIB_ID=$(lsb_release -si); export DISTRIB_CODENAME=$(lsb_release -sc) | |
echo "deb [signed-by=/etc/apt/trusted.gpg.d/influxdb.gpg] https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list > /dev/null | |
sudo apt-get update && sudo apt-get install influxdb2 | |
sudo chmod +x /etc/init.d/influxdb | |
sudo chown root:root /etc/init.d/influxdb | |
sudo update-rc.d influxdb defaults | |
sudo update-rc.d influxdb enable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install apt-transport-https ca-certificates dirmngr | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv E0C56BD4 | |
echo "deb https://repo.clickhouse.com/deb/stable/ main/" | sudo tee \ | |
/etc/apt/sources.list.d/clickhouse.list | |
sudo apt-get update | |
sudo apt-get install -y clickhouse-server clickhouse-client | |
sudo service clickhouse-server start |
NewerOlder