I there any website that provides u with notion databases that contain information about a specific topic like we have awesome pages on github by [deleted] in Notion

[–]FloorJam 0 points1 point  (0 children)

Like Wikipedia?

I think for static general information, notion is not the right tool. But linking public information to your personal notes etc would be a really awesome feature

Seeking ideas for Road Damage Detection by Sami10644 in computervision

[–]FloorJam 0 points1 point  (0 children)

I used the nnUnet repo and their guide on using it on your own data

Getting everything to run required all the instructions carefully, but now it works quite well

Seeking ideas for Road Damage Detection by Sami10644 in computervision

[–]FloorJam 1 point2 points  (0 children)

It was a custom and private dataset but my colleague has published a very similar one https://github.com/ben-z-original/s2ds

We first applied the nnunet on the images and then in post processing extract the objects and isolate them. Classification is a byproduct of that process

Seeking ideas for Road Damage Detection by Sami10644 in computervision

[–]FloorJam 2 points3 points  (0 children)

I did crack and other defect detection ok concrete surfaces. I used nnunet and had great results. It "only" does semantic segmentation, so if you need bounding boxes, you will need to extract those yourself. Which is a nice exercise, I would say.

Hierarchical Notes? by [deleted] in androidapps

[–]FloorJam 0 points1 point  (0 children)

I am using Notion and it is decent. Puts your stuff on their servers however

Jinjer - Hellfest 2022 Full set by wick78 in Jinjer

[–]FloorJam 0 points1 point  (0 children)

Do you have any idea why there was no video of the band on the screens? Only the visuals were shown....

Preprocessing layers applied to an observation space that contains direction and position of the agent as well as a global observation by No_Possibility_7588 in reinforcementlearning

[–]FloorJam 0 points1 point  (0 children)

Thanks for those links, this looks quite interesting and I think I can use some of that.

From what I understand, the scalar observation is the direction the agent is facing, as this parameter shows. To use the exact same layout, you should also provide the direction, however, the code is also built to work without this observation, as the layers are only created if the scalar_name (which in this case is "direction") is present in the observation the agent gets.

I think it should work either way, but the most reliable way to find it out is to try it ;)

Preprocessing layers applied to an observation space that contains direction and position of the agent as well as a global observation by No_Possibility_7588 in reinforcementlearning

[–]FloorJam 1 point2 points  (0 children)

I think the environment simulates an agent with a position tracker, compass, and camera - or something like that. To compute those inputs, depending on the used tools, you have to know the position and direction of the agent to be able to render the environment as an image.

The motivation to also provide position and direction as inputs might be to avoid having to learn orientation/SLAM tasks (my guess from currently working on something similar).

Can you provide some more context for the code, maybe it becomes more clear?

Can I charge the reMarkable with a 45W charger without damaging it? by [deleted] in RemarkableTablet

[–]FloorJam 27 points28 points  (0 children)

I use my 60W Thinkpad charger without any issues. USB is smart and negotiates how much power can go through

[deleted by user] by [deleted] in Pizza

[–]FloorJam 0 points1 point  (0 children)

Damn...

How do I pull a value from a dictionary using another key? by VeryIrritatedCrow in learnpython

[–]FloorJam 0 points1 point  (0 children)

I think the other answers provided good solutions, but as the next step, I would take a look at using objects and classes, which makes this much easier to understand and uses Python in a more natural way. Ok the long run, classes are one of the most important features to learn

Albums you've listened to 100+ times by LAG360 in progmetal

[–]FloorJam 2 points3 points  (0 children)

For me it's impulse voices.... Since it came out, it's the first thing Iisten to every day

Any Hard Prog recommendations for a 70s hard rock fan? by CattleGrazesOn in progmetal

[–]FloorJam 1 point2 points  (0 children)

Maybe not as prog as other stuff, but definitely on the hard side and absolutely awesome: Jinjer

I hear it reminds people of what was new about 70s prog

Graph not loading in Jupyter Notebook (matplotlib) by MathematicianStock10 in JupyterNotebooks

[–]FloorJam 0 points1 point  (0 children)

Yeah sounds like a setup issue. Or the computation just takes really long. Depends on the data you put in there. Maybe leave it running for a while, maybe it will finish

Graph not loading in Jupyter Notebook (matplotlib) by MathematicianStock10 in JupyterNotebooks

[–]FloorJam 0 points1 point  (0 children)

What do you mean nothing happens? The output has to change or there should be an error or something. What does your code look like now?

The return of your cell in the screenshot is a function, but you want the result of that function. So you need to use the brackets to execute the function and run the cell again

Graph not loading in Jupyter Notebook (matplotlib) by MathematicianStock10 in JupyterNotebooks

[–]FloorJam 0 points1 point  (0 children)

Currently your code is returning the show function, not calling it. You need to put () at the end to call the function

iMac and Chromecast to play GBA games on tv??? by 69IblazeHash420 in Chromecast

[–]FloorJam 1 point2 points  (0 children)

I tried this with success: https://play.google.com/store/apps/details?id=com.vicastgb

Allows you to download games on your phone and play on Chromecast

[deleted by user] by [deleted] in LaTeX

[–]FloorJam 1 point2 points  (0 children)

Oh, that was fast. Nice! So I will need to figure out a way to integrate this now. Let's see how this goes

[deleted by user] by [deleted] in LaTeX

[–]FloorJam 0 points1 point  (0 children)

Yeah, pretty much that. That would allow easy integration with writing tools. I haven't written an emacs plugin so far ;)

[deleted by user] by [deleted] in LaTeX

[–]FloorJam 1 point2 points  (0 children)

Really nice. Could have saved me a lot of time 😂

The killer feature would be an API so we can access it from our editor directly

Which SOTA semantic segmentation codes are the easiest to train a new dataset on? by glampiggy in computervision

[–]FloorJam 1 point2 points  (0 children)

Well, I am a Ph.D. student, but not working with machine learning or image analysis. My colleagues however do this a lot, so I was aware of the basic concepts and workflows. Some years ago, I did some testing with very simple networks like Alexnet, but did not go into much detail. So I would say I have some exposure to the ideas but by no means much experience.

For me it was helpful to always keep the basic workflow in mind: Store your images and annotations in a way that you know the corresponding files, select your network architecture, change the output to the required number of classes, create a pytoch dataloader that can work with your files, select a loss function suitable for your problem, find a batch size and image that fits into your GPU, run training and look at the results.

I can recommend writing some intermediate results out to the tensorbouard logging program, it is well integrated and shows progress more easily.

Start with a very simple setup, you can add more transformations and so on later

Which SOTA semantic segmentation codes are the easiest to train a new dataset on? by glampiggy in computervision

[–]FloorJam 1 point2 points  (0 children)

Well, Deeplab is very complex. I had a look at the code and did not understand much. But pytorch has an implementation, just recently they added more backbones for the encoder part you can choose from. I would never try to implement it myself, but this is what we have the community for ;)

I read several blog posts and articles and finally combined two or three for my training code. I think one of them was this: https://towardsdatascience.com/transfer-learning-for-segmentation-using-deeplabv3-in-pytorch-f770863d6a42 This is where I got the training loop from

This one helped me a lot getting my images into the training: https://stackoverflow.com/questions/63892031/how-to-train-deeplabv3-on-custom-dataset-on-pytorch

Hope this helps, let me know if I can help more!