Need a small footprint desktop with decent power Hardware and Software by wolfyshoo … money. I'm not tied to any ecosystem - recommend a model that actually “sounds” for music. Re: How Does Flutter Handle State Management Internally? Programming Software Development by kearawill How Flutter Handles State Internally Flutter uses a reactive UI model. When the setState() method is called within a StatefulWidget, it … Re: Need a small footprint desktop with decent power Hardware and Software by rproffitt For over a decade such discussion invariably gravitate to the audio encoding which is usually highly compressed which loses most of the qualities you are asking for. Maybe an old school mini console CD player would be best so you can at least get CD-AUDIO quality which as you can guess has been panned by vinyl folk. Over and over I've heard … Re: Need a small footprint desktop with decent power Hardware and Software by trcooke Sonos kit is pretty decent. I have a bunch of different models and they all sound great. Integrating OpenAI Web Search API in LangGraph Programming Computer Science by usmanmalik57 … = {"type": "web_search_preview"} llm_base = ChatOpenAI( model="gpt-4o-mini", openai_api_key = OPENAI_API_KEY, temperature=0, use_responses_api….daniweb.com/attachments/4/28c9a50c34e1a2fe1323ea9db2a2d5ff.png) Again, the model correctly returns the results of the game one day … Re: Looking for AI app developers Programming Mobile Development by KamalDeepPareek … more about your SDK—especially things like: How customizable will model loading and inference be? What platforms will it support first… Re: Looking for AI app developers Programming Mobile Development by jonathannweyer That sounds like a great project, running models locally on mobile is definitely gaining interest. I’m not building anything right now, but I’ve been exploring ideas around offline voice commands and simple summarization features, so something like this could definitely be useful. Curious, are you targeting both iOS and Android from the start? … Re: Best Android phone for starting to test a Java app? Programming Software Development by jonathannweyer For testing a Java app, a good choice would be a mid-range device like the Google Pixel series or a Samsung Galaxy A series. These models generally have a clean Android experience and receive regular updates, which can help ensure compatibility with a wide range of devices. Additionally, using an emulator can be beneficial for testing, as it … Re: Best Android phone for starting to test a Java app? Programming Software Development by Ulfson I used to get Nexus devices (predecessors of the Pixels) for a plain vanilla Android environment, but these days I no longer value that so much. As I don't fancy the Chinese manufacturers, that leaves Samsung for decent-priced midrange phones. IMO the changes they make to the Android UI don't make a difference for development, and of you really … DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization Programming Computer Science by usmanmalik57 …`predict_sentiment()` function using the `Llama3.1-405b` model. ```python model = ("llama3.1-405b", "…sentiment of tweets using the `DeepSeek R1` model. ```python model = ("deepseek-r1", "accounts…first generate summaries via the `Llama3.1-405b` model. ```python model = ("llama3.1-405b", "… Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks Programming Computer Science by usmanmalik57 …quot;.format(title, abstract) research_category = client.chat.completions.create( model= model, temperature = 0, max_tokens = 100, messages=[ {"role": "… Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B Programming Computer Science by Pelorus_1 Great breakdown of DeepSeek R1 Distill LLaMA 70B! The explanation of text classification and summarization is clear and insightful. Appreciate the practical examples—makes implementation much easier. Thanks for sharing! Re: Question/Answering over SQL Data Using LangGraph Framework Programming Computer Science by Pelorus_1 Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever. Re: How old is your computer? Hardware and Software by tomcom three years. it still work well. Re: How old is your computer? Hardware and Software by Reverend Jim >Our office started with PC DOS and WordStar If you want to get really picky, I spent a year (1978) doing medical research on a Cromemco running CP/M and whatever horrid OS (if you can even call it that) ran on a small Data General beast. Re: Looking for AI app developers Programming Mobile Development by Emily Johnson That sounds like an exciting project! An open-source library for running AI models on mobile devices could be incredibly useful for developers looking to integrate AI-driven features. While performance limitations exist, optimizing for real-time or lightweight tasks could open up many possibilities. I’d love to learn more about your SDK and its … Re: How old is your computer? Hardware and Software by parreirae1 My PC is going to have 9 years old. But till now it is doing very well his job as it has only to do my work at home. Re: How old is your computer? Hardware and Software by Salem 10+ year old no-name desktop put together by my local computer shop. Re: Looking for AI app developers Programming Mobile Development by Pelorus_1 Look for top-tier freelancers on platforms such as Upwork or Toptal. Think about AI development companies that specialize in machine learning, natural language processing, and deep learning. Model Programming Databases by Santanu.Das I am new in MySQL. I do not about model and how can I store data in the tables created in amodel. Re: Model Programming Databases by pritaeas A model is usually just the design, to help you build the actual database. After creating the database and tables you can store data in it. Is that what you mean? Re: model keywords in MVC Programming Web Development by djjeavons …is used in the lambda expressions: @Html.LabelFor(model => model.Title). What's model in here? What does it stand for? This… is already strongly typed. > I have also seen Model used somewhere other than in Ebuy.Website.Tests.Models.Auction…I can't find it now. Any idea what Model stands for? Model is a variable and is assigned the type that… model keywords in MVC Programming Web Development by Violet_82 … confused with the usage of the keyword model/Model in MVC, so I was hoping somebody…@Html.LabelFor(model => model.Title) @Html.EditorFor(model => model.Title) </p> ... } 1)when model is used … the lambda expressions: `@Html.LabelFor(model => model.Title)`. What's `model` in here? What does it … Re: model keywords in MVC Programming Web Development by Violet_82 Thanks, yes I think it makes a bit more sense now :-). Just one thing: > Model is a variable and is assigned the type that is used for the view via the @model declaration So is `Model` (the variable) automatically generated by the system? Re: model keywords in MVC Programming Web Development by djjeavons > So is Model (the variable) automatically generated by the system? Yes, in fact I believe (but could be wrong) that it is part of the Razor view engine. Re: model keywords in MVC Programming Web Development by Vijay_18 As already mentioned in one of the answers the second "model" is just any variable and can be replaced with any other variable name. I would also suggest to learn more about "lambda expressions" and "extension menthods" while working with ASP.NET MVC. Model naming in Codeigniter Programming Web Development by cossay If I have a model called Admin_user which extends CI_Model, how do I name the file in which this model class is so that codeigniter can load it? I named the file admin_user.php and placed it in application/models directory but Codeigniter does not load the class when I try loading the model like `$this->load->model('admin_user');` Model-View-View-Model Community Center by dodkiama I have been kind of overwhelmed by WPF with the most powerful data binding ever released in a development platform. I understand that in order to use its full potential, I have to introduce the Model-View-View Model pattern. Has anyone used this pattern before? Re: Model naming in Codeigniter Programming Web Development by cereal In case you want to use a different name, it can also be used an alias: $this->load->model('Model_name', 'admin_user'); $this->admin_user->something(); http://ellislab.com/codeigniter/user-guide/general/models.html#anatomy Model View Controller with Java Programming Software Development by chopram … that someone on this forum could help. I have a model which is just a class that adds 2 integers together… to do is apply the MVC pattern to the above model. I want to have a Swing interface with 2 textboxes…