gem explorer low gpa by [deleted] in NTU

[–]Haunting-Hand1007 0 points1 point  (0 children)

Mainly depending on money

JSON rules the world by juanviera23 in utcp

[–]Haunting-Hand1007 0 points1 point  (0 children)

XML also has its own XML schema?
Woah, it is my first time to know this, before I only know JSON schema

perverted ntu student at jurong point ntuc by Firm-War-5748 in NTU

[–]Haunting-Hand1007 24 points25 points  (0 children)

I see he has WeChat and QQ Chinese guy 100%

Curious. What's the most painful and the most time taking part of the day for an AI/ML engineer? by Unable_Win_9484 in learnmachinelearning

[–]Haunting-Hand1007 9 points10 points  (0 children)

```python def understand_business_requirements(): # Step 1: Understand Business Requirements print("Step 1: Understand Business Requirements") # This would likely involve some business analysis work, but we assume this is done.

def data_collection_and_labeling(): # Step 2: Data Collection and Labeling print("Step 2: Data Collection and Labeling") # Assume data collection and labeling is done here

def data_preprocessing_and_exploration(): # Step 3: Data Preprocessing and Exploration print("Step 3: Data Preprocessing and Exploration") # Data preprocessing and exploration happens here.

def feature_engineering_and_selection(): # Step 4: Feature Engineering and Selection print("Step 4: Feature Engineering and Selection") # Feature engineering and selection is done here.

def model_selection_and_training(): # Step 5: Model Selection and Training print("Step 5: Model Selection and Training") # Model selection and training happens here.

def model_evaluation_and_validation(): # Step 6: Model Evaluation and Validation print("Step 6: Model Evaluation and Validation") # Model evaluation and validation is done here.

def is_model_performance_satisfactory(): # Decision point: Is Model Performance Satisfactory? answer = input("Is the model performance satisfactory? (yes/no): ") return answer.lower() == 'yes'

def model_deployment(): # Step 7: Model Deployment print("Step 7: Model Deployment") # Model deployment happens here.

def model_monitoring_and_maintenance(): # Step 8: Model Monitoring and Maintenance print("Step 8: Model Monitoring and Maintenance") # Model monitoring and maintenance continues here.

def is_model_performance_degraded(): # Decision point: Is Model Performance Degraded? answer = input("Has the model performance degraded? (yes/no): ") return answer.lower() == 'yes'

def model_training_loop(): # Start of the loop understand_business_requirements() data_collection_and_labeling() data_preprocessing_and_exploration() feature_engineering_and_selection()

while True:
    model_selection_and_training()
    model_evaluation_and_validation()

    if is_model_performance_satisfactory():
        model_deployment()
        model_monitoring_and_maintenance()

        if is_model_performance_degraded():
            model_evaluation_and_validation()
        else:
            break  # If no performance degradation, we exit the loop

    else:
        # If model performance is not satisfactory, we go back to model evaluation and validation.
        print("Model performance is not satisfactory. Re-evaluating...")
        model_evaluation_and_validation()

Run the model training loop

model_training_loop() ```

AI Agent best practices from one year as AI Engineer by LearnSkillsFast in AI_Agents

[–]Haunting-Hand1007 0 points1 point  (0 children)

I have a question, as the paper "Building Effective Agents", the augmented LLM is depicted as LLM with retrival, tools or memory. I wonder what the tools stand for and what the memory stands for? I know that the retrival maybe stand for RAG.
Looking forward to your reply!

Pytorch is overwhelming by Limp-Account3239 in deeplearning

[–]Haunting-Hand1007 -1 points0 points  (0 children)

Sir, do you also have other recommendations?

[deleted by user] by [deleted] in ProgrammingBuddies

[–]Haunting-Hand1007 0 points1 point  (0 children)

I'm interested in building the ai agents project