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
### | |
### Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
### BSD License | |
### Re-written in R by @georgeblck | |
### | |
rm(list=ls(all=TRUE)) | |
options(digits=10) | |
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
### | |
### This is a batched LSTM forward and backward pass. Written by Andrej Karpathy (@karpathy) | |
### BSD License | |
### Re-written in R by @georgeblck | |
### | |
rm(list=ls(all=TRUE)) | |
LSTM.init <- function(input_size, hidden_size, fancy_forget_bias_init = 3){ | |
# Initialize parameters of the LSTM (both weights and biases in one matrix) |
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
# Ich habe bis jetzt keine Quelle gefunden die: | |
# a) den aktuellsten v2.0-Datensatz benutzt (Stand: März 2019) und | |
# b) die Wort-Inflektionen zusammenführt. | |
# Ich hoffe Menschen die Deutsche Sentiment-Analyse machen wollen können diesen Code gebrauchen | |
# Source/Quelle: http://wortschatz.uni-leipzig.de/de/download | |
# Load Packages/Pakete laden | |
library(readr) | |
library(reshape2) |
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
# Clear workspace | |
rm(list = ls()) | |
# load Packages | |
library(reshape2) | |
library(stringr) | |
#### Load data #### | |
# Get the URLs of the Regional Monthly Averages |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
{{/* | |
- Change viewport sizes, lazy-loading,async & width,alt,link,caption in the shortcode call | |
- Hardcode sizes in this file | |
- If an image should not be resized or changed - e.g. because it is low quality - | |
simply dont put it in the page bundle but in /static | |
Example call: {{<figure src="image.jpg" alt="Alt Text" viewport="(max-width:720px) 80vw, (max-width: 1260px) 40vw, 30vw">}} | |
figure with auto-resizing, webp-conversion and srcset v2021-06-27 |
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
{ | |
"name": "flare", | |
"children": [ | |
{ | |
"name": "analytics", | |
"children": [ | |
{ | |
"name": "cluster", | |
"children": [ | |
{"name": "AgglomerativeCluster", "value": 3938}, |
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
$(document).ready(function() { | |
var table = $('#example').DataTable( { | |
rowReorder: true | |
} ); | |
} ); |