Bitcoin Forum
July 05, 2024, 04:04:35 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 [85] 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 »
1681  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 09, 2015, 01:18:13 AM
Friendly bump of the dev related info that has been buried under much noise.

Next weekly coming on Thursday 12th.

Weekly Consolidation Update 2 Containing Communications Direct From XAI Dev:

Previous consolidation (Week 1) : https://bitcointalk.org/index.php?topic=864895.msg10301510#msg10301510


There has been much progression since last week, most notably work towards an update that is due to be released very soon.

The following is a range of information that JoeMoz (XAI developer) has provided in various sources including Slack.


In relation to comments about him listing SharePoint on his LinkedIn profile:

SharePoint just happens to be one thing I am an expert in... and focused on for a couple years because frankly its the highest billable rates :wink:


Age old Opensource / Closedsource dilemma continues:

I mean the tech we are doing is sufficiently advanced that anyone who would try to rip it off right out of the gate would probably wind up pushing broken stuff.
From an open source perspective, it would probably be a valuable contribution to the community at large, like DHT but i remember with XQN, within a few days there were a couple of clone coins with the profit explorer graph feature etc.


Choosing a Name for the Data Layer:

I'm thinking of ditching the treespaces name i came up with, because it generates confusion with the biology stuff when you google it. I think i am going to call the entire data layer PlumeDB, because it is something that can be broken out and marketed for a lot more than just the AI stuff and it is essentially a full blown decentralized database engine running on top of the coin network funneling network communications over the bitcoin p2p protocol.


Where does the name plume come from?

I thought it sounded cool! I was thinking of clouds of data so "databases" are plumes in the cloud.


More notes on fee structure:

The way I am doing fees right now is..it is based on data reservations by kilobyte-hour.  e.g. 0.0001 XAI/kbh when you initialize a new data plume, you put out a request for data reservations based on the estimated size of the database and the lifetime you want. You get responses from volunteer/available slave nodes that are willing to replicate your data index, and you have to pay the total kbh fee to each of the slaves by default  Cool

The actual data itself at a low level is distributed across all nodes via filesystem abstracted into DHT and all nodes participate for public data sets, you don't pay for data reservations, but consumers pay-per-use.

So, I am thinking maybe there should be a small fee for loading public data, as an anti-spam type of measure. The other thing i am thinking is that maybe all Atom data types (opencog atomspaces), should be public, to keep contributing to a large body-of-knowledge, seems maybe pointless to load Atoms that are private...hmm, so who should get the fee for public data loads... maybe the 1st relay node.


How is data loaded onto the Sapience distributed AI network?

You load data either through RPC or the console.

More in-depth infomation related XAI and PlumeDB:

http://wiki.dfx.io/display/XAI/Sapience+AIFX+Home

http://wiki.dfx.io/display/XAI/PlumeDB


Hint on Potential New Look:

I'm doing something cool with it and doing the UI in QML/QT Quick, eventually i want to rewrite the entire wallet using it and ditch the existing hokey interface.  It'll let us get a "responsive" UI on the android/different devices so stuff isn't sitting off the side of the screen etc., and get a wallet that actually looks like a modern app and not something from 1998.


Further development related comments:

Although in the latest sapience source i have moved the leveldb dependency out from being code included in the source to being external dependency so i can use latest google leveldb from github + cross-compile for android easily. Just means an extra step, have to pull and compile leveldb separately and set the include/lib path. I'm trying to get it so i can use 1 .pro file i suppose on linux you could just install the libleveldb-dev package and do it that way, same as libboost-all-dev etc.

I should note that this is a test/beta build... so there's definitely TODO's etc. Under the hood tweaking and stuff that we might want to adjust like by default the low level DHT that is just doing mindless raw data storage will tries to get a penetration of 72 nodes for a given record but i don't know if we even have 72 live nodes on the network, let alone getting them on testnet and there's rebuild scenarios like what if all 8 slave nodes go down, having the network detect that and automatically assign replacements and rebuild trie indexes, etc.

There's really like 4 overlay networks running on top of each other at once... the low level DHT, a mapping & rebuild info DHT, the slave PHT's, and the master/originator the biggest thing we'll have to play around with in testing is seeing what the latency is like i know there will be latency, because it is a p2p database so for some use cases it might not be suitable, for others it might mean just adapting how you work with the data.

The more nodes the better... if we had a couple thousand nodes on the network for instance you can do better load balancing but just in general, basically _everything_ in the entire system is async.

Its just different i guess, from anything i've worked with to date at least :wink:  should enable new scenarios actually a good analogy is using it is more like hitting web services asynchronously, instead of direct database access... but in exchange, you get the redundancy/massive scale-out/decentralization.


Is there anyway for the system to determine what nodes are closest?

Well, there isn't any geolocation /location based proximity right now... but that is something i've been thinking about.


Uniqueness?

As far as i know, this is the only (DHT) implementation that is running over the bitcon p2p protocol, even maidsafe DHT is a parallel/external implementation running over UDP.


Is that useful for anything outside of AI?

There's like a million other things besides AI you can build on top of a decentralized DHT.


Process:

The way i did it is each key in addition to a hash can have 3 attributes, and those get indexed by the slaves in PHTs so that is the value-added service you are getting from the slaves in exchange for the XAI/kilobyte-hour fee. It's key/value storage on the low raw DHT level but with 3 attribute components in the key. So like lets say i want to run a distributed aggregate range query to do a SUM across the data plume where attribute 2 is between A and B... the slaves provide the service of fast lookup to get the subset of infohashes that fall within the criteria, then you use those against DHT2 to get the possible nodes that have each one, that are then looked up against DHT1 to retrieve the individual records/values from the raw key/value store....So with something like a SUM, you slave can pull the subset of infohashes and then chunk them out into groups of say 100 and dole those out as individual compute operations across nodes, and then the results are concentrated and returned to the originator.


DHT1 and DHt2 are just levels within the 4(?) DHTs in PlumeDB?

Layered dht's... yeah, sort of i mean, like for something like a torrent its pretty trivial, so a basic k/v dht works fine but as soon as you want to do anything more involved, you need more metadata etc.so you layer it on top. the raw DHT gives you the redundancy/resilience, etc. and can just focus on getting the values where they need to be


In response to a question on Slaves.

Slaves are responsible for building that multi-rooted PHT the DHT only knows about hash256 + value...there's TODO's i'm probably not going to get to for the release tonight (today), like being able to configure how much of your free space you want to allocate so don't go loading gigantic data sets Tongue




Last week update + feature date Smiley
1682  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 09, 2015, 01:13:18 AM
If you want me to stop exposing your scam, fine.

Send me one btc of your profits, btc address 1NsjUX7RH7wv2oXftQsy3UYgcQQNDUeRvW and I want tell anyone you are scammers.

Coins received. https://blockchain.info/address/1NsjUX7RH7wv2oXftQsy3UYgcQQNDUeRvW

I will leave you scammers alone now.

I can send myself some coin too.
1683  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 09, 2015, 12:46:37 AM
'group of pushing' Lolll this is just market reaction when we found a gem

Go away man...
1684  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Bittrex, EmpoEx on: February 08, 2015, 11:20:53 PM
Its toxic people like J9901 that cause the most damage to crypto.Its sad really.They must have a pretty boring and miserable life to waste it trolling as much as he does. Undecided

No.

Its toxic devs like this guy who scams people left and right that is toxic to crypto. Do you know that this is not Cedric's first coin and he had a few random shitcoin both premine & ICO from this summer?

HA! Bet you didnt know that!

And the second most damaging thing in crypto are idiots who cant identify blatant scams like this one. The same idiots who keep investing ICO after ICO wondering why they keep losing money.

I gave u all the red flags and warned you all during the ICO. Tried to sincerely help, now look at you fools who didnt listen. I bet you're all just wishing for price to go back to at least ico price so u fools can break even huh? LOL. Fools who keep investing in scams hurt not only themselves but crypto in general.

A few of these scammers make a lot of money.

So because NOW nobody buying its a scam ?

So damn logic Einstein
1685  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 10:58:37 PM
I see some mad people,Doesn't able to buy eh ?

We are like still very tiny for 600k coin,I don't understand your 'Pumping coin' saying,no its not,this is the same patern for every coin...this is a real project,Plumedb was in close beta now,everything will come soon ! Smiley

Stop being mad.

Someone who has questions can look at your posts and see the pump.



I give you a 5/10,for the effort.

But typical troll.


Nice your account with 0 activities Smiley
1686  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 10:56:17 PM
Just a quick update on the tech preview coming out... I am working on it, want to push a clean release, a few segfaults popped up while I was testing last night across android and linux.  I fixed most of the issues, still a couple things to take care of before I can push the release.  Been up for a couple days straight so I need to catch up on some sleep and recharge.  Got a little time today for a nap but I'm just popping my head up to give a status update.

This test build has the PlumeDB and P2P peering all up and running and testable.  Its a layered DHT approach with the low level DHT running entirely over the Bitcoin P2P messaging bus (e.g. messages with serialized payloads sent through the existing node/addrman infrastructure, as opposed to a parallel libtorrent or UDP network running side-by-side).  Then on top of that there's a DHT2 layer for "tracker" type functionality and metadata, and a PHT layer which is multi-homed index functionality provided by the "slave" nodes (probably should think of a cooler name than "slave" for them).

As far as the data format, all data is key/value with values in JSON format and keys comprised of infohash + 3 attribute slots.  On top of that the planned abstraction is for 3 primary data types - time series data (e.g. druid.io), NoSQL style json data (e.g. mongodb style), and Atom formatted data (opencog AtomSpace).  It might also make sense to add a 4th for data formatted for NLP.  But the strategy is basic core architecture that more complex things can be built on top of (you could leverage the key structure for instance to map a ternary tree into it, kind of how the trie serialization works).

If you wanted to do something like DropBox style data or file/blob storage, right now you'd have to write your own adapter that could take that data, chunk it and split it across records.  Default max limits right now are 1 GB of space allocated by the node as available capacity to the network, 1MB max record size.  There will be settings surfaced so the end user can configure their own values - right now I've got the user-configurable settings for the fees implemented.

This is a complex build with a huge amount of code behind it, but will be so worth it.  Just want to make sure I'm not dropping builds that blow up after 15-20 minutes of running, or get SIGABRT'd by Android because of the aggressive ANR stuff, or have locking issues, etc.  I think I got most of it.  I really need to crash for awhile though so my brain can function again...



Don't forget last ETA. Story to not fall on troll and FUD...
1687  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 10:52:29 PM
I see some mad people,Doesn't able to buy eh ?

We are still very tiny for 600k coin,I don't understand your 'Pumping coin' saying,no its not,this is the same patern for every coin...this is a real project,Plumedb was in close beta now,everything will come soon ! Smiley

Stop being mad.
1688  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 10:24:33 PM
10btc to take us over 200k - i say 2 days and we will be there  Cool

1-2 week 500k,my bet haven't changed
1689  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 10:14:31 PM
Oh yeah I got some cheap coin Smiley Thanks buddy
1690  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 10:11:22 PM
Nobody dump and hes mad. Take some on sell side,I have did this too. This coin is rare,but still cheap. Smiley
1691  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 10:07:58 PM
We'd like to thank all of you for your help pumping this coin.

A lot of money has been made.

Soon we will be powering down the coin and dropping all the nodes. Some of us still have a few coins left to dump so it may be a few hours, but the coin is now officially abandoned.

We will be starting up some new coins soon and welcome help from the same crew in pumping it. If you would like advance notice of the ipo's email one of us. Those of you who have made at least 5 solid posts pumping any of our coins in the first phase can get a 15% discount on post IPO sales of our new coins.

Once again thanks very much to the pumpers who made this such a success. Anyone who is left holding these nonsense coins should learn to read coin descriptions more carefully in the future, and make sure they actually make sense.

Hasta la byebye muchachos


Shutup troll // report.

We have our first Troller guys.
1692  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 08:56:10 PM
there's really no point rule there.

Sometime crypto is really obscure and illogic...

A shitty coin with no dev show,etc can still be pump to jupiter. Look Fuel2coin

I understand that you don't think it can be done, but i think a model can be created to give indication of pricing.

There are too many variables IMO.
Fuelcoin only pumped because the devs held a large majority of the coins in circulation.

Fact is, with these bitcoin currencies, all of the information is public. This gives a student like me a huge advantage compared to some of the technical financial products that are much harder to collect data for and much harder to model.

This will be a good starting point.  I will continue following XAI as one of my primary case studies and data sets.

Because actual financial system are centralized,Giving to a minority the power.

Bitcoin is decentralized,giving the power to all of us. And this is a big advantage. Yes. Smiley I see you try to apply a kind of centralize scheme, but i don't think it will ever well be apply like on stock...

Good luck on your work buddy
1693  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 08:45:45 PM
^

Im not enough skills in english to start an analyst about what is going on,what we have to change,etc... I just think there people more experience here to do that

when bitcoin become more mainstream and community expend more in french,maybe. But this problem will be resolve by this time I think
1694  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 08:41:59 PM
there's really no point rule there.

Sometime crypto is really obscure and illogic...

A shitty coin with no dev show,etc can still be pump to jupiter. Look Fuel2coin

I understand that you don't think it can be done, but i think a model can be created to give indication of pricing.

Im not don't thinking it can't be done. I just think we have other thing do before start thinking about pricing indicator.
1695  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 08:23:23 PM
there's really no point rule there.

Sometime crypto is really obscure and illogic...

A shitty coin with no dev show,etc can still be pump to jupiter. Look Fuel2coin
1696  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 08:12:28 PM
Emotions is what I see as the biggest part of pricing. And thats why I am saying that this pump posting is so important, it creates emotion.

Creates emotion and make you start to analyst the thing(project,dev,market...etc) Yes its important,but its not all.

Try the same here without dev show ETA,video and posting. You can post all the thing you want,without dev project, your will go only to the earth core. Posting is more a spark on market.

Higher price are mostly made by the feeling of security(security about what? about your money.Plumedb about to get out,dev working on stuff,legicity of the team...) of your coin representation(community,dev),that grab alot of people.


If this can help you,Im here since a years,made nice money since a couple of month,trying to look for gem,like XAI Wink
1697  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Bittrex, EmpoEx on: February 08, 2015, 08:06:46 PM
I eat chicken for breakfast
XAI looking good - creative new project - alts gaining volume and popularity again - Oh and did I mention
IM BACK INTO ALTS FULLTIME
See ya at 100K BTCBTCBTC

You liar. It was only 99.998K  Tongue




He doesn't have enough vision. 100k was peanut,500k seems more a legit price for this kind of project,total of coin,active dev,etc...

And Plumedb will be ready soon Smiley
1698  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 07:52:29 PM
all you said matter,look FUD or troll post on some coin...

The first thing about this is what the market expectation,on what people invest now. The second thing in my book is dev. An active dev posting video,ETA,is a very sexy thing for cryptocommunity and grab everytime alot of people on new coin Smiley

I see what you mean. i think I will keep in mind that maybe what I said earlier could be a -1 pump point, and then CrazyLoaf adds +10 pump points. And then the developer posts have +5 dev points?

So now how to figure out how much price is a dev point worth and how much price is a pump point worth?

You're too mathematical, this is not stock market.

Its about everything,there's no rule in there. Mostly about emotion and feeling of security(about dev) price going up. Legicity of the project(expectation of market,feasibility of work...) and where we are now,something ready to get out? Yes. Current value compared to the other coin/market...  These indicator lets you see a movement in price coming



//

I think we've touch the support ground.No more big quantity dumping at this price.

 Ready to move foward again soon Wink

At least the big fact is we are still severely undervalue,#105 on CMC,did you really think we worth same as Deutsche eMark or mooncoin ? Loll ,place your bet Smiley
1699  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 07:39:01 PM
If I'm pumping with my posts, I'm doing a shit job.
I have watched, I am sort of new spectator to this industry, but it seems to be that you are doing fantastic job. [...]

I think you're overstating CrazyLoaf's reach there. He is clearly enthusiastic for Sapience/XAI, as are others around here (certainly myself included, though I try to be more moderate in my posts). To say that Sapience/XAI is increasing valuation due to the magical powers of CrazyLoaf's pumping, is largely dismissive of all the other (more important) factors of development going on with this particular project.

If you're effectively studying how people value something that has no intrinsic value, I'd recommend that you avoid narrowly focusing on one person's actions, and try to see the bigger picture: the coin itself for it's goals, main developer and roadmap, the community, the initial funding, the milestones reached, the effective use case and what factors of demand have been proposed, the altcoin landscape in general, etc ...
Best of luck!  Wink

You make a fantastic point. And I try to keep this in mind as much as I can. My professor says that correlation does not mean causation, and he says that other things can be baked into the pricing cake. Now the hard part for me is to see how much of the cake is made of "pump" and how much is made from the coin's features. Does that make sense?  If you have any ways or ideas of how I can figure this out, please please please let me know, could save me lots of time.

Also one mistake I have made is making posts... Do my posts affect price? How much does bitcointalk matter? Etc. This is a very tough industry for me to figure out.

all you said matter,look FUD or troll post on some coin...

The first thing about this is what the market expectation,on what people invest now. The second thing in my book is dev. An active dev posting video,ETA,is a very sexy thing for cryptocommunity and grab everytime alot of people on new coin Smiley

Legit dev give a legit price. Look opal,there's a dev team absolutly legit,giving ETA etc... On other hand look NOOcoin team,there never posting,never talk or something...
1700  Alternate cryptocurrencies / Announcements (Altcoins) / Re: $XAI Sapience AIFX - Decentralized AI over coin network | Now on Coinwallet.co on: February 08, 2015, 07:27:13 PM
Price fall by 50% from his high

DUMP MOAR noob want my coin at 50k D:
Pages: « 1 ... 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 [85] 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!