git config --get-regexp alias
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
alias ws="cd ~/ws" | |
alias home="cd ~" | |
alias fuck='rm -rf' | |
alias reyarn="fuck yarn.lock node_modules && yarn install" | |
alias repy="fuck .venv && python3 -m venv .venv && source .venv/bin/activate && make develop" | |
alias fu='pkill -KILL -f "yarn start|make start|python "' |
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
// JSON Snippets | |
// e.g., for package.json | |
{ | |
"nodeGitBranchDep": { | |
"prefix": "npmGit", | |
"description": "Install a package from github branch", | |
"body": [ | |
"\"$1\": \"git+ssh://[email protected]/datavisyn/$1#$2\"", | |
], | |
} |
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
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
"description": "A scatterplot showing body mass and flipper lengths of penguins.", | |
"data": {"url": "data/penguins.json"}, | |
"transform": [{"sample": 30}], | |
"mark": "point", | |
"encoding": { | |
"x": { | |
"field": "Flipper Length (mm)", | |
"type": "quantitative", |
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
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
"data": { | |
"values": [ | |
{"level": "No Hate", "English": 379, "German": 882}, | |
{"level": "Intimidation", "English": 241, "German": 193}, | |
{"level": "Offends or~Discriminates", "English": 780, "German": 354}, | |
{"level": "Promotes~Violence", "English": 83, "German": 55} | |
] | |
}, |
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
[ | |
{"x":3.3172535896,"y":-0.1902617812,"max_prob":0.4831581474,"cht":0}, | |
{"x":0.3345750272,"y":-2.7536168098,"max_prob":0.7291174751,"cht":0}, | |
{"x":-0.0381230526,"y":-3.4805505276,"max_prob":0.7780501487,"cht":0}, | |
{"x":1.3160461187,"y":-1.590508461,"max_prob":0.6277059059,"cht":0}, | |
{"x":2.7171809673,"y":-3.1506085396,"max_prob":0.8059095897,"cht":0}, | |
{"x":2.0220816135,"y":-4.8679504395,"max_prob":0.86,"cht":0}, | |
{"x":3.7739021778,"y":0.3715353906,"max_prob":0.6087857631,"cht":0}, | |
{"x":2.7153964043,"y":-1.7479717731,"max_prob":0.68,"cht":0}, | |
{"x":0.82089746,"y":-1.6400024891,"max_prob":0.5059073724,"cht":0}, |
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
# preprocessing | |
for gamma in tqdm(['scale', 'auto'], 'gamma', leave=False): | |
for kernel in tqdm(['rbf', 'poly'], 'kernel', leave=False): | |
for c in tqdm([0.1, 1, 10, 100, 1000], 'c', leave=False): | |
wandb.init(project="ails-challenge-1", entity="keckelt", tags=["svm"]) | |
params = { | |
"gamma": gamma, |
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/sh | |
sudo apt autoremove | |
conda clean --all --yes | |
docker system prune --all --force |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder