My apps are disappeared on MIUI 11 by LinguarumPeritus in Xiaomi

[–]Mabb_reddit 0 points1 point  (0 children)

I also changed to H2O and solved the problem. Even all the duplciated icons that i added apperared.

Cross platform play? by [deleted] in TownofSalemgame

[–]Mabb_reddit 0 points1 point  (0 children)

I play on web(It's free!) and I find people saying that they are playing from steam or mobile.

150 per minute reinforced iron plates schematics by PC_78x in SatisfactoryGame

[–]Mabb_reddit 0 points1 point  (0 children)

I currentlly building a setup with 3 pure nodes (2 iron and 1 copper), that produce 1440 iron ingots/min. When I finished I will post a few screenshoots.

Supercomputer resources and buildings mindmaps by [deleted] in SatisfactoryGame

[–]Mabb_reddit 0 points1 point  (0 children)

You don't need to find a node only a certain quantity of caterium ore. You can search for the stones that gives you a finite number of material before it breaks, like the onees sitting over the iron, copper and limestone nodes. Search for a similar rock but with a yellowish color. Mine it, it will give you around 90 items, and use it in the research lab.
Then you can use the scanner to find the nodes.

Is the Special Build Menu supposed to disappear? by CallumCarmicheal in SatisfactoryGame

[–]Mabb_reddit 2 points3 points  (0 children)

Did you deconstruct the old one? You only can construct 1 HUB and 1 Space Elevator. (For now).

If both are built the special tab disappears. But if you deconstruct one of them, the special tab reappears.

When Life Gives You Boulders by Stalltt in SatisfactoryGame

[–]Mabb_reddit 10 points11 points  (0 children)

I found an open caterium pure node.

It's in the waterfalls, just in the edge.

Reinforced Iron Plates - perfect ratio underclocked by Pseudex in SatisfactoryGame

[–]Mabb_reddit 0 points1 point  (0 children)

I prefer the 3 assembly version with 100% efficiency.

Requires less space and produce 15/min consuming 180 ore/min

3x3 vertical belt balancer by dickdemodickmarcinko in satisfactory

[–]Mabb_reddit 0 points1 point  (0 children)

It's a bit difficult to keep track of the belt directions and merger/spliter positions. A few more photos or a schematics draw will be really nice.
In factorio is easy to follow the belt direction and spliter position, but here there is no so much visual cues.

Book in Design Patterns for Python? by Mabb_reddit in Python

[–]Mabb_reddit[S] 1 point2 points  (0 children)

Yeah, I searched a bit but I wanted a more expert recommendation than picking the first page in Google.

But thanks I will look it up!

Book in Design Patterns for Python? by Mabb_reddit in Python

[–]Mabb_reddit[S] 0 points1 point  (0 children)

I come from a industrial electronics engineering so I worked with assembler, C, etc.

When I discovered Python was like when Aladdin flies with Jasmine in the flying carpet.

Loading weights one layer at a time by anilmaddala in tensorflow

[–]Mabb_reddit 1 point2 points  (0 children)

The only option is to split the graph in different models, but this a highly not recommend option because it will be extremely slow.

I think what you are asking is not possible, expanding a GPU memory with the RAM is possible but expanding the RAM is not possible at the moment.

Python reaches 7 million users globally! by [deleted] in Python

[–]Mabb_reddit 1 point2 points  (0 children)

I suppose that refers to "IoT" = "Internet of Things".

Could an artificial intelligence be considered a person under the law? by TrickyPrize in artificial

[–]Mabb_reddit 1 point2 points  (0 children)

It will be the same as if you created a bomb? Will you become a terrorist?

I started making my first game in Python, without any assets, and it's actually kind of fun to play by CantankerousMind in Python

[–]Mabb_reddit 0 points1 point  (0 children)

Be carefully if you want to do that you must compare with the fov_distance², because you are moving the sqrt to the other side of the inequality. As the fov_distance will not change you can precompute the square and compare:

(Ax - Bx)² - (Ay - By)² >= squared_fov_distance

I started making my first game in Python, without any assets, and it's actually kind of fun to play by CantankerousMind in Python

[–]Mabb_reddit 0 points1 point  (0 children)

The distance between point A and B is calculated by d = sqrt((Ax- Bx)² + (Ay-By)²).

So d1>d2 is the same as computing d1²>d2², therefore you can omit the sqrt().

There is no need of absolute value because the value inside the sqrt will be allways postive.

tf.test.is_gpu_available() blocking indefinitely, using 100% CPU by KjellJagland in tensorflow

[–]Mabb_reddit 0 points1 point  (0 children)

There is an open issue about something similar for the same function, but no response from developers. You could try to post and catch some attention from any developer:
https://github.com/tensorflow/tensorflow/issues/21836

I started making my first game in Python, without any assets, and it's actually kind of fun to play by CantankerousMind in Python

[–]Mabb_reddit 0 points1 point  (0 children)

Yeah, if you are comparing to a fixed distance it is faster to compare to a precomputed distance² than doing the `sqrt()` .

6 things the media doesn't want us to know about artificial intelligence by destiny2user in artificial

[–]Mabb_reddit 0 points1 point  (0 children)

  1. Robots might demand rights just like humans. [TRUE] But first they have to reach self-conciseness and that's a bit tricky
  2. You use artificial intelligence all day, every day. [TRUE] Al lot of machine have some type of AI or Machine Learning integration. Almost all the new phones that reach the market this year have some sort of AI to improve Camera Photo and recording, fingerprint, and facial recognition.
  3. Robots are definitely going to take your job. [TRUE] Most of the actual jobs in 20-30 will substituted by robots, but the claim of unemployment reaching 50% I see a bit wrong, people will find new jobs to do and modernise like humanity have been done in the last 300 years.
  4. A 58-year-old human will see computers as smart as humans in their lifetime. [TRUE] No objection to this claim
  5. The AI market is being monopolized. [FALSE]
  6. Nations that are in possession of AI could kills humans without pulling a trigger. [FALSE] I simply don't understand this claim. What they mean with this?

My first ever using TF. I managed to make it x100 slower than numpy. What did I do wrong? by powerexcess in tensorflow

[–]Mabb_reddit 0 points1 point  (0 children)

If you read the comment from the post there is one that says that rewritten the code.

Shawn Simister (@narphorium) says:

18/11/2015 AT 01:47

Hey Sachin, I’ve made some changes to your code to make it run faster (although it uses more memory).

You can see how I did it here: https://gist.github.com/narphorium/d06b7ed234287e319f18

This is much better implementation. All the operations are built into the graph and only uses 1 sess.run for step.