Questions tagged [bloom]

Bloom is a computer graphics effect used in video games and high dynamic range rendering (HDR) to reproduce an imaging artifact of real-world cameras.

55 questions
0
votes
0 answers

Fetch multiple Bond Yield curves in single Fetch from Bloomberg with XBBG

I need to fetch multiple Bond Yield curves (1 month, 1 year, 5 year, etc) from different countries using Bloomberg API. Searching for F476XXy Index at the terminal gives a list of generic tickers, like F47603M Index for the 3 month MXN Bond…
Fróis
  • 5
  • 1
  • 2
0
votes
2 answers

Neo4j Bloom crashing when selecting 'Create node' option in version 4.4.4 - suspected bug

"I am experiencing issues with Neo4j Bloom and am unable to create anything directly from it. When I click on a scene to choose the option 'Create node', the application crashes. I suspect there is a bug. I have attempted to accept any suggested…
0
votes
0 answers

LLM(BLOOM) infer with CPU instead GPUs and OOM happens

import torch from transformers import AutoTokenizer, AutoModelForCausalLM import os os.environ["PYTORCH_CUDA_ALLOC_CONF"] = "max_split_size_mb:32" os.environ['CUDA_VISIBLE_DEVICES'] = '0,1,2,3,4,5,6,7' device = torch.device('cuda') tokenizer =…
Yg Meng
  • 53
  • 1
  • 1
  • 8
0
votes
0 answers

How to add Glow/Bloom effect to wire mesh

Currently I have this code. It's creating a glowing box but I want the lines/ edges of the box/ wire frame to glow. I'd like to get Bloom working if possible. How can I accomplish this? thanks
javajoe
  • 1
  • 1
0
votes
0 answers

I have developed a software for nlp but it always returns the same output

The software he developed a software for natural language processing is able to predict the first 10/20 characters, but it always returns the same output for the remaining 180 characters text_prompt = 'I’ve used these features of Git for years and I…
0
votes
1 answer

Use ROS bloom to generate a deb and a -dev.deb packages

I have implemented a library with some functionalities. As an example, let's say this is my library. Whenever I compile with: mkdir build cmake .. make and install this library: sudo make install another package can find it and use it. Now I want…
apalomer
  • 1,895
  • 14
  • 36
0
votes
1 answer

Transformers AutoModelForCasualLM cannot be imported

I am trying to follow this article to use the AutoModelForCasualLM from transformers to generate text with bloom. But I keep getting an error saying that python cannot AutoModelForCasualLM from transformers. I have tried multiple computers and…
0
votes
0 answers

Can't run quantised models on machine

I'm trying to get the 8bit quantised bloom models running on my machine. I (seem to have) installed all of the dependencies, however, when I run my script, it errors - saying it can't find the cudaGetRuntime I then tried switching to to conda…
Tobi Akinyemi
  • 804
  • 1
  • 8
  • 24
0
votes
0 answers

New Bloom Effect on YouTube video - Any ideas on how to reproduce it?

YouTube has a new bloom feature on their desktop site (I believe it is only available in dark mode). What's amazing is that as the video plays, the bloom effect changes with it. It's a moving bloom! I think it's really nice, and it does not seem to…
Jonah
  • 43
  • 5
0
votes
0 answers

Unexpected rendering with SceneKit and CIFilter

Here is a simple SceneKit project with two boxes. I’ve added a CIBloom filter to one of them. When I rotate the scene, the ”glow” effect is rendered behind the other box? I saw someone else had this issue and solved it by setting writesToDepthBuffer…
Andy3000
  • 11
  • 1
  • 4
0
votes
0 answers

How would you convert this shader to work with version 120?

Often newer version shaders can be simple to convert but this one uses the function texelFetch which is not available in version 120. Leastways my version is not working: New version: in vec4 v_colour; in vec2 tex_coord; out vec4 pixel; uniform…
Hasen
  • 11,710
  • 23
  • 77
  • 135
0
votes
1 answer

Can't use BloomAI locally

So I just finished installing Bloom's model from Huggingface & I tried to run it in my notebook. Here's the code: from transformers import AutoTokenizer, AutoModel model_path = "D:/bloom" tokenizer = AutoTokenizer.from_pretrained(model_path) model =…
0
votes
1 answer

sum relationships in neo4j bloom scene action

so in neo4j, I have company nodes and relationships between them as invoices, relationship propertys as invoice amount and products description. I want to sum relationships amount to be left only one arrow, and sumerized amount, i don't want to…
ilia
  • 5
  • 2
0
votes
1 answer

why unity post processing effect not work in webgl?

Everything is perfect in editor. bloom、mothionblur.. but when i built project into webgl and play in chrome no bloom effect at all. i'm using Built-in render pipeline and linear color space . even manual setting graphic apis to webgl 2.0 but no…
xiaoliang
  • 1
  • 3
0
votes
0 answers

Sprite use png map . But it doesn't display properly when scene contains Bloom. What shound i do?

I loaded a Sprite in a scene with Bloom, the trouble is that my Sprite map is using an externally loaded Png texture. Not the usual solid color material. I know it's possible to make all the textures black first and then back to the original color.…
jImmy
  • 15
  • 5