This file contains 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 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 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 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 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.
This file contains 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
ffmpeg -user_agent "%useragent" -referer "%referer%" -i "%url%" -c:v libx264 -c:a aac "%tabtitle%.mp4" |
This file contains 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/v4.json", | |
"description": "Publications planned and in progress.", | |
"width": 600, | |
"layer": [ | |
{ | |
"data": {"values": [ | |
{ | |
"paper": "Coral Application Note", | |
"end": "2021-08-31", |
This file contains 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/v5.json", | |
"description": "Parallel coordinates plot showing 7 dimensions of automobile statistics.", | |
"width": 700, | |
"height": 400, | |
"padding": 5, | |
"config": { | |
"axisY": { | |
"titleX": -2, |
This file contains 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": "Google's stock price over time.", | |
"width": 300, | |
"height": 300, | |
"data": { | |
"values": [ | |
{"label": "A", "x": 0, "y": 420}, | |
{"label": "B", "x": 2, "y": 440}, | |
{"label": "C", "x": 5, "y": 430}, |
NewerOlder