rjp
rjp
Extra test example using http://archive.ics.uci.edu/ml/machine-learning-databases/pendigits/ showing scaling of input values and conversion of single output value into a {0,1} vector (because otherwise it doesn't work all that well.)
I had a bash at trying to fix this by adding a `--clip` argument that restricts the "what's the highest block at this coord?" but, alas, my Rust is suboptimal...
Given "Ferris Bueller's Day Off", Prose gives these tags: `Ferris:NNP Bueller:NNP 's:POS Day:NNP Off:NNP` but if you lower-case the input, you get these instead: `ferris:JJ bueller:NN 's:POS day:NN off:IN` which...
(Might be able to be solved as part of https://github.com/CompVis/latent-diffusion/issues/34 where e.g. transparent areas are forbidden?) I'm generating movie posters / book covers / etc. and most of the time,...
I asked LD for "fire" (samples=3, iter=2) and 5 of the 6 outputs had rendered some variant of the word "FIRE". Is it possible to somehow control whether text is...
``` type Item struct { Title string `pagser:"td->eq(0)"` Image string `pagser:"td a img->attr(src)"` Quote string `pagser:"td->eq(3)"` Description string `pagser:"td->eq(4)"` } ``` If I put `td->eq(2)` in the tag for `Image`,...
test.rb require './nolate' $foo = [["fish",29],["chips",43],["monkey",57]] print nlt("index.nlt") views/index.nlt This is a list of items k}); end %> This is after the list views/row.nlt \* Item: costs This doesn't output...
The transactions test has: client.rpush("txn1", 3, self.callback); But doing a similar thing on the last command in my transaction never calls the callback: redis.transaction(function(){ ... redis commands manipulating set without...