Saturday 5 August 2017

வேளாண்மை செய்தி மற்றும் சேவைகள் - Agriculture News and Services


1) தோட்டக்கலை ( Horticulture)

2) வேளாண் பொறியியல்( Agricultural Engineering )

3) விதை சான்றிதழ் ( Seed Certificate)

4) அங்கக சான்றிதழ் ( Organic certificate)

5) பட்டுபுழு வளர்பு  (Sericulture)

6) வனவியல்(Forestry)

7) மீன்வளம் மற்றும் கால்நடை(Fisheries and livestock)

8) தினசரி வானிலை, மழைப்பொழிவு மற்றும் நீர்த்தேக்க நிலைகள்(Daily weather, rainfall and reservoirs)

9) விதை மற்றும் உரம் தயாரிப்பாளர் விபரம்(Seed and fertilizer producer)


10) உரங்களின் விலை விபரம்(Price of fertilizer)

மீன் அமினோ அமிலம் -

மீன் அமிலம்தயாரிப்பது மிகவும் எளிது. மீன் விற்கும் இடத்தில் அல்லது நறுக்கும் இடத்தில் மீதப்படும் செதில், குடல், வால், தலை போன்றவைகளுடன் சம அளவு பனை வெல்லம் சேர்த்துநன்கு பிசைந்துஒரு பிளாஸ்டிக் வாளிக்குள் மூடி வைக்கவேண்டும். இருப்பத்தைந்து நாள் கழித்து, எடுத்து நன்கு கலக்கினால் டானிக் தயார். இந்த வளர்ச்சி ஊக்கியேமீன் அமிலம்’. 10 லிட்டர் நீருக்கு 100 கிராம் (மில்லி) கலந்து பயிரில் தெளித்தால், பயிர் பச்சை கொடுத்து செழித்து வளர்கிறது


Machine Learning

What is a machine learning ?
Essentially, it is a method of teaching computers to make and improve predictions or behaviors based on some data. What is this "data"? Well, that depends entirely on the problem. It could be readings from a robot's sensors as it learns to walk, or the correct output of a program for certain input.
Another way to think about machine learning is that it is "pattern recognition" - the act of teaching a program to react to or recognize patterns.
What does machine learning code do ?
Depends on the type of machine learning you're talking about. Machine learning is a huge field, with hundreds of different algorithms for solving myriad different problems - see Wikipedia for more information; specifically, look under Algorithm Types.
When we say machine learns, does it modify the code of itself or it modifies history (Data Base) which will contain the experience of code for given set of inputs ?
Once again, it depends.
One example of code actually being modified is Genetic Programming, where you essentially evolve a program to complete a task (of course, the program doesn't modify itself - but it does modify another computer program).
Neural networks, on the other hand, modify their parameters automatically in response to prepared stimuli and expected response. This allows them to produce many behaviors (theoretically, they can produce any behavior because they can approximate any function to an arbitrary precision, given enough time).

Friday 4 August 2017

Convert List to Array with datatype in Java

If we have list and we have to convert into array with datatype. Java provides method for this.


For ex: List<Long> var = new ArrayList<Long>();

We have convert this into Long array. 

Conversion code: 

            Long[] varArray =  var.toArray(new Long[var.size()]);


Featured post

How to convert Java object to JSON or JSON to java object in java

Download Gson jar from this link  Quick Reference toJson() – Convert Java object to JSON Gson gson = new Gson ( ) ; <Java cla...